1.
android.content.res.Resources$NotFoundException: String resource ID #0x1
분명히 값을 맞게 설정해주었는데 에러가 났다.
찾아보니 이유는 textview 나 edittext에 setText 메소드를 사용할 때 Int 타입의 데이터를 넣어서 발생하는 에러
라고 한다..
뭐지 여튼 String으로 형변환해서 해결했다. ^_^
2.
Unable to add window -- token null is not valid; is your activity running?
찾아보니 Dialog 생성시 getApplicationContext()를 사용해서 생긴문제라고한다.
getApplicationContext() -> 자기클래스이름.this로 바꿔서 해결했다 !
AlertDialog.Builder dialog = new AlertDialog.Builder(MyClass.this);
'Android(JAVA)' 카테고리의 다른 글
테두리 설정 (0) | 2020.04.27 |
---|---|
textview 글쓰기 초과 표시 (0) | 2020.04.25 |
Java String 클래스 메서드 (0) | 2020.04.14 |
Bitmap -> String , String -> Bitmap 변환 (0) | 2020.04.10 |
에물레이터 먹통에러; (0) | 2020.04.09 |