Android90 RecyclerView에서 3, 4번째 아이템이 제대로 로딩되지 않는 현상 이게 대체적으로 RecyclerView에 Height가 100dp 이런식으로 지정되어 있어서 그런데 Height를 0dp로 바꾸면 잘 동작함 2023. 1. 4. onConfigurationChanged이 동작하지 않을 때 android:configChanges="orientation|screenSize|keyboardHidden" android:launchMode="singleTop" android:screenOrientation="portrait" android:theme="@style/Application.Theme.NoActionBar" android:windowSoftInputMode="adjustNothing" 이런 코드를 추가해주면 된다. 아마 configChanges 만 추가해줘도 동작하는 듯 하다. 2022. 12. 29. APK 생성할 때 output 이름 변경 applicationVariants.all { v -> v.outputs.all { def formattedDate = new Date().format('yyMMdd') outputFileName = "v${versionName}_code${versionCode}_${formattedDate}_v1.apk" } } 이런식으로 날짜도 커스텀 할 수 있다. 2022. 12. 2. Button의 Text가 전부 대문자로 나올 때 XML에서 android:textAllCaps="false" 옵션을 주면 정상적으로 잘 나온다 2022. 12. 1. 이전 1 2 3 4 5 ··· 23 다음