import org.apache.http.NameValuePair 에러 gradle 에서 useLibrary 'org.apache.http.legacy' dependencies에 compileOnly 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:4.1.2' 두 줄 넣어주면 됨. [안드로이드 공부]/UI 2018.10.01
inputchannel is not initialized Fatal Exception: java.lang.RuntimeExceptioninputchannel is not initialized 알려진 버그로...아직 해결방법이 없는 듯 하다.... https://issuetracker.google.com/issues/36948946 [안드로이드 공부]/UI 2018.09.27
StaleDataException: Attempted to access a cursor after it has been closed. Fatal Exception: android.database.StaleDataException: Attempted to access a cursor after it has been closed. cursor.close() RingtoneManager로 얻은 Cursor 은 Close 하지 않아도 알아서 하니, 손대면 에러 발생. 그냥 패스 하면 된다. [안드로이드 공부]/미디어 2018.09.24
ava.lang.NumberFormatException: For input string: "-1.0" java.lang.NumberFormatException: For input string: "-1.0" String val = "-1"Interger.valueOf(val)--> ERROR int a = 0;try{ a = Interger.valueOf(val)} catch(NumberFormatException e){ double d = Double.parseDouble(val) a = (int)d;} 요렇게 하자. [안드로이드 공부]/UI 2018.09.20
Resources$NotFoundException: Resource ID #0x0 in AlertDialog Resources$NotFoundException: Resource ID #0x0 in AlertDialogstyle 이 빠질 경우 발생. new android.support.v7.app.AlertDialog.Builder(context, R.style.dialogStyle); [안드로이드 공부]/UI 2018.09.14
Error : BinderProxy@ is not valid; is your activity running? android.view.WindowManager$BadTokenException: Unable to add window — token android.os.BinderProxy@ is not valid; is your activity running? 보통 프로그래스 다이얼로그 띄우려고 하는데 발생 한다. 구글에서는 이런 에러를 이렇게 정의 하고 있다. 이 비정상 종료는 대개 앱에서 이전에 완료된 활동을 컨텍스트로 사용하여 대화상자를 표시하려고 시도하여 발생합니다. 예를 들어 활동이 종료되면 대화상자를 표시하려고 시도하는 AsyncTask를 트리거하지만 사용자가 작업이 완료되기 전에 활동에서 뒤로 이동하면 발생할 수 있습니다. 띄우려는 곳이 액티비티가 아니라면if(!((Activity) context).is.. [안드로이드 공부]/UI 2018.09.10
error: resource style/TextAppearance.AppCompat.Notification.Title android studio Gradle 3.1.0 업데이트 후 1. error: resource style/TextAppearance.AppCompat.Notification.Title 발생android:textAppearance="@style/TextAppearance.AppCompat.Notification" --> 로 변경 android:textAppearance="@style/TextAppearance.Compat.Notification2. error: cannot find symbol class NotificationCompat import android.support.v7.app.NotificationCompat; --> 로 변경 import android.support.v4.app.Notif.. [안드로이드 공부]/안드로이드 스튜디오 2018.04.09
안드로이드 UI NumberPicker TextColor, TextSize, Highlight 색깔 바꾸기 1. Style.xml 2. XML NumberPicker 뿐만 아니라, 대부분에 적용되는 기본 룰이다.소스로 하지 말고 요렇게 하는게 정석. [안드로이드 공부]/UI 2018.03.27
cannot find symbol static runOnUiThread #import com.google.android.gms.internal.zzahn.runOnUiThread error: cannot find symbol static runOnUiThread com.google.android.gms:play-services:11.8.0 --> com.google.android.gms:play-services:12.0.0 으로 올리면 발생, 내리면 돌아 옴... [안드로이드 공부]/안드로이드 공부 2018.03.22
bitbucket에 repository 초기화 및 push 1. bitbucket 에 repository 생성--> readme 파일 만들지 말고--> Get started the easy way 화면에서 2. 로컬 소스 폴더에서 git init3. 로컬 소스 폴더에서 git remote add origin https:// [안드로이드 공부]/안드로이드 스튜디오 2018.03.08