본문 바로가기 메뉴 바로가기

코모스튜디오

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

코모스튜디오

검색하기 폼
  • 분류 전체보기 (273)
    • 코모 어플리케이션즈 (68)
      • 말하는 알람 시계 (42)
      • 말하는 일상 카운터 (3)
      • 말하는 타이머 스톱워치 (1)
      • 말하는 시계 (13)
      • SpeakingAlarmClock (0)
      • 번갯불 (2)
      • 빠른 손전등 (2)
      • 일정 브리핑 알람 (2)
    • [안드로이드 공부] (181)
      • 코틀린 (7)
      • 선플라워 디비보기 (6)
      • 안드로이드 스튜디오 (29)
      • 프리퍼런스 (11)
      • 안드로이드 공부 (30)
      • 프래그먼트 (7)
      • 동기화 (12)
      • 액티비티 (8)
      • UI (47)
      • 미디어 (2)
      • 알림 (8)
      • 서비스 (3)
      • 애드 (9)
      • 테스트 (1)
    • [애플] (0)
    • [IT 뉴스] (18)
      • 모바일 (10)
      • 과학 (5)
      • 인터넷 (3)
    • [엔터테이먼트] (1)
      • 영화 (1)
    • 기타 (2)
  • 방명록

Talking Alarm Clock -How to use the On-Time Tab

Just click the area. 1. Blue dot rectangle- will show the Default text dialog for editing. 2. Red dot rectangle- will show the Active hours dialog for editing. 3. Yellow dot rectangle- will show the Hourly text dialog for editing. 4. Green dot rectangle- will show the On Time Set dialog for editing. 5. Purple dot rectangle- will show the Interval dialog for editing. Then you can edit time / text..

코모 어플리케이션즈/말하는 알람 시계 2018. 12. 24. 11:21
애드몹 failed Ad failed 1, 2

There was a problem getting an ad response. ErrorCode: 1 admob while connecting to ad server: no protocol Ad failed to load : 2 위 에러들은 애드몹 앱 ID 와 배너 ID를 바꿔 쓰면 발생 한다. 그냥 보기엔, 네트워크 문제등이려니 할 수 있지만.단말기 마다 위 3가지 방식으로 다른 에러를 토해 내기 때문에 당황스럽다.

[안드로이드 공부]/애드 2018. 12. 19. 14:26
No package identifier when getting value for resource number

Clean ? No package identifier when getting value for resource number textView.setTextColor();를 할 예정이었는데; textView.setText()를 해버리면발생한다. 인터넷에서 답이라고 말하는 Clean을 아무리 Clean 해봐야 안된다.

[안드로이드 공부]/UI 2018. 12. 13. 15:22
안드로이드 리사이클러 뷰 구분선 및 색상 RecyclerView divider color

아주 간단하다.아래 처럼 넣어 주면, 색깔까지 완벽하게! DividerItemDecoration dividerItemDecoration = new DividerItemDecoration(mContext,LinearLayoutManager.VERTICAL); dividerItemDecoration.setDrawable(mContext.getResources().getDrawable(R.drawable.recyclerview_divider)); mRecyclerView.addItemDecoration(dividerItemDecoration);아래는 recyclerview_divider.xml

[안드로이드 공부]/UI 2018. 12. 13. 12:06
안드로이드 동적 컬러리스트 적용 ColorStateList setTextColor

color/a.xml ColorStateList colorStateList = null; if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.M) { colorStateList = context.getResources().getColorStateList(R.color.a, context.getTheme()); } else { colorStateList = context.getResources().getColorStateList(R.color.a); } textView.setTextColor(colorStateList) 요렇게 하면, 간단하게 컬러 리스트를 동적으로(programmatically) 적용 할 수 있다.

[안드로이드 공부]/UI 2018. 12. 9. 10:50
안드로이드 BroadcastReceiver ANR

브로드 캐스트 리시버 에서는 10 초 이내에 모든 작업을 완료 해야함. 그렇지 않으면 시스템이 죽여 버리거나, ANR을 발생 시킨다. 1. onReceive 에서 최대한 간결하게 코드를 처리 한다.1.1 다른 서비스로 리턴 시킨다.1.2 또는 goAsync()를 사용 하여 타임아웃을 연장 한다. 아래는 구글의 설명이다. /** * This can be called by an application in {@link #onReceive} to allow * it to keep the broadcast active after returning from that function. * This does not change the expectation of being relatively * responsive to..

[안드로이드 공부]/UI 2018. 12. 7. 15:25
Fatal Exception: android.content.ActivityNotFoundException

Fatal Exception: android.content.ActivityNotFoundException No Activity found to handle Intentif(intent.resolveActivity(getPackageManager()) != null) startActivityForResult();

[안드로이드 공부]/UI 2018. 12. 6. 15:10
Fatal Exception: java.lang.IllegalStateException Fragment d{} not attached to Activity

Fatal Exception: java.lang.IllegalStateExceptionFragment d{} not attached to Activity 항상 context를 가져온놈으로 쓰고, attached 여부도 확인 할 것.getString --> context.getString()

[안드로이드 공부]/UI 2018. 12. 3. 14:03
Failed to resolve: play-services-basement

Failed to resolve: play-services-basementgoogle()을 jcenter() 위로 올리면 된다.allprojects { repositories { google() jcenter()

[안드로이드 공부]/안드로이드 스튜디오 2018. 10. 26. 16:06
Push rejected: Push to origin/master was rejected

처음 저장소 생성 후 push 할 때 android studio bitbucket push rejected Push rejected: Push to origin/master was rejected Updates were rejected because the tip of your current branch is behind 발생하면 1. VCS2. GIT3. Branches Rebase Current onto Selected 해주면 됨. 아래는 코모의 새로운 앱이에요(19/07/01출시) 일상 카운터 - 기록, 계수기, 일기 구글플레이에서 무료 다운로드https://play.google.com/store/apps/details?id=com.comostudio.counter

[안드로이드 공부]/안드로이드 스튜디오 2018. 10. 4. 11:09
이전 1 ··· 3 4 5 6 7 8 9 ··· 28 다음
이전 다음
공지사항
최근에 올라온 글
  • Caused by: android.view.⋯
  • viewpager 사용 시 하단⋯
  • fragment container view⋯
  • Resources$NotFoundExcept⋯
최근에 달린 댓글
  • 안드로이드 10 인데 위 코드⋯
  • 제보 : https://horae.tistor⋯
  • 잘 안쓰는데 감사 인사 re:⋯
  • 안녕하세요. 좋은 말씀 감사⋯
Total
410,073
Today
24
Yesterday
158

Blog is powered by Tistory / Designed by Tistory