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 |
Tags
- DataTable
- MySQL
- release unsigned
- Android Apk 이름 변경
- apache gzip
- error
- Exception
- R프로그래밍
- android error
- Eclipse
- JavaScript
- spring
- Android Apk 이름
- Program type already present
- Android
- java error
- html
- CSS사용법
- css
- release Apk
- jQuery
- android fragment
- Android Apk
- 안드로이드
- Kotlin
- Java
- FLUTTER
- tomcat
- fragment
- Firebase
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