Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Exception
- JavaScript
- java error
- apache gzip
- Eclipse
- release unsigned
- fragment
- android fragment
- jQuery
- error
- 안드로이드
- Program type already present
- release Apk
- Android
- R프로그래밍
- Java
- DataTable
- css
- MySQL
- android error
- Android Apk 이름 변경
- FLUTTER
- html
- tomcat
- Android Apk
- spring
- CSS사용법
- Android Apk 이름
- Firebase
- Kotlin
Archives
- Today
- Total
목록android error (2)
selfstarter
Lambda expressions are not supported at language level '7'
Lambda expressions are not supported at language level '7' 현재 자바버전이 람다를 지원하지 않아서 발생하는 에러 build.gradle(Module:app)에서 android {} 안에 compileOptions를 추가하면 에러가 해결된다 compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } 또 다른 방법으로 File-Project Structure에서 Properties에서 자바 버전을 변경해도 된다
App/Android
2020. 8. 7. 20:20
Android Error NotFoundException String resource ID
Android Error NotFoundException String resource ID Error NotFoundException: String resource ID #0xdac Cause setText할 때 넣는 인자가 String이 아니다 Solution modify Code holder.textView2.setText(itemListData.getMoney()); to holder.textView2.setText(Integer.toString(itemListData.getMoney()));
App/Android
2020. 5. 6. 14:56