본문 바로가기

개발/안드로이드

(12)
[안드로이드] asset, drawable을 URI string으로 변경하기 필요에 따라선 local resource (asset, drawable)을 URI string으로 변경할 필요가 있다. 이를 위해서는 아래와 같이 변경하면 된다. Asset String imageUri = "assets://image.png"; Drawable String imageUri = "drawable://" + R.drawable.image;
[안드로이드] RecyclerView - java.lang.IndexOutOfBoundsException: Inconsistency detected. Invalid item position 16(offset:16).state:34 androidx.recyclerview.widget.RecyclerView{3c041c7 VFED.V... ........ 0,0-1080,1450 #7f080058 app:id/common_list_re.. 에러 로그 더보기 java.lang.IndexOutOfBoundsException: Inconsistency detected. Invalid item position 16(offset:16).state:34 androidx.recyclerview.widget.RecyclerView{3c041c7 VFED.V... ........ 0,0-1080,1450 #7f080058 app:id/common_list_recycler_view} 재현 방법 List를 refresh하고 scroll 한다. 해결 방법 Refresh 시점에 Adapter의 data list를 초기화할 때 list.clear()가 아닌 객체를 새로 만들어 준다. mDataset = new ArrayList();
[안드로이드] 오페라 모바일 스토어에 안드로이드 앱 등록하기 3rd party app store 중 하나인 Opera Mobile Store를 소개드리려고 합니다. http://apps.opera.com/ HTML5 Games and Apps - Opera Mobile Store html5.oms.apps.bemobi.com 안드로이드, 블랙베리, iOS, HTML 5, 심비안, 윈도우폰, 윈도우 모바일을 위한 서비스를 제공하고 있습니다. 아래 링크를 통해 개발자 개정을 무료로 생성할 수 있습니다. 입력 후, 메일로 password가 전송됩니다. https://publishers.apps.bemobi.com/ 로그인 후, Company Details 탭에서 회사 정보를 입력합니다. Manage Products에서 Add Product를 통해 app 등록을 시작합니..
[안드로이드] The color "xxx" in values has no declaration in the base values folder; this can lead to crashes when the resource is queried in a configuration that does not match this qualifier less... 보통 이 에러는 프로젝트를 파일 복사하여 새로 생성할 때 발생한다. 해결 방법은 간단하다. 1. Build > Clean Project 2. File > Invalidate Caches / Restart 안드로이드 재시작 후 정상적으로 동작하는 것을 확인할 수 있다.