일상22 [Android] RecyclerView (리사이클러뷰) 알아보기 이번에는 kotlin으로 RecyclerView와 Binding에 대해서 알아보겠습니다~! :) Step 1. Recyclerview 라이브러리 / Binding 설정 (주석부분 참고) plugins { id 'com.android.application' id 'kotlin-android' } android { compileSdkVersion 30 buildToolsVersion "30.0.3" defaultConfig { applicationId "com.example.recyclerview_kotlin" minSdkVersion 21 targetSdkVersion 30 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.r.. 2021. 10. 22. [Android] APK파일 생성시 Execution failed for task ':app:lintVitalRelease'. 오류 AndroidStudio에서 APK파일을 생성하다가 보면 다음과 같은 오류가 나타날 때가 있다. Execution failed for task ':app:lintVitalRelease'. > Lint found fatal errors while assembling a release target. * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. 무엇을 따로 설정한 것이 없는데 언제부턴가…. 이런 오류가 발생해서 잘못된 것이 아닌가 생각했다. ㅋㅋ 문제를 만났으니 해결 방법을 알아.. 2021. 10. 22. [Android][kotlin] No type arguments expected for class Call 에러 Retrofit2 사용 시 "No type arguments expected for class Call" 라는 에러가 발생 하는 경우가 있다. *해결방법: 올바른 패키지를 import 했는 지 확인하여 변경하자! ex) retrofit2.Call(O) android.telecom.Call (X) 2021. 10. 21. [Android] TabLayout(탭 레이아웃) Tab 1개 VISIBLE / GONE 처리 TabLayout(탭 레이아웃)안에 있는 Tab 1개를 VISIBLE / GONE 처리하는 방법에 대해서 알아 보겠습니다. TabLayout에서 tab접근하는 방식으로 접근하면 안되구요 다른 방법으로 접근해야 합니다. 긴말 필요없이 바로 코드를 보겠습니다. ((ViewGroup) tabLayout.getChildAt(0)).getChildAt('순서').setVisibility(View.VISIBLE); ((ViewGroup) tabLayout.getChildAt(0)).getChildAt('순서').setVisibility(View.GONE); 코드 적용은 위와 같습니다. '순서' 로 적혀있는 부분에 tab의 position을 적용시켜주시면 됩니다. 2021. 10. 18. 이전 1 2 3 4 5 6 다음