일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 뷰변경 감지
- Fragment에서 Activity의 함수 사용하기
- espresso
- searchview
- 안드로이드개발레벨업교과서
- 안드로이드
- adapter
- IntentTestRule
- ActivityTestRule
- 코딜리티
- 구분선
- 재사용
- fragment
- 안드로이드13
- 스와이프
- binding adapter
- 코틀린
- 리사이클러뷰
- Error:Execution failed for task ':app:mergeDebugResources'
- Android
- LayoutManger
- 테마 아이콘
- recyclerview
- ui test
- 안드로이드스튜디오
- high order function
- viewholder
- 생명주기
- Fragment 수동 추가
- 고차함수
Archives
- Today
- Total
룬아님의 취중코딩
Android12 Splash Screen 로고 지우기 본문
별도로 Splash Screen을 사용하지 않던 앱을 Android12에서 사용하게 되면 앱아이콘이 앱을 시작할 때 크게 나타나게 된다.
별도의 로고나 애니메이션을 노출하고 싶지 않은 경우
logo_transparent.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@android:color/transparent" />
</shape>
theme.xml
<style name="AppTheme.Splash" parent="Theme.SplashScreen">
<item name="windowSplashScreenAnimatedIcon">@drawable/logo_transparent </item>
<item name="windowSplashScreenAnimationDuration">0</item>
<item name="windowSplashScreenBackground">@color/white</item>
<item name="postSplashScreenTheme">@style/AppTheme</item>
</style>
투명색 로고를 임의적으로 만들고 duration을 0으로 하여 흰하면으로 빠르게 지나가도록 구현하였다.
반응형
'개발 > 안드로이드 개발' 카테고리의 다른 글
Android Studio에서 when 쓸 때 자동으로 줄넘김이 되는 이슈 (0) | 2023.08.21 |
---|---|
Hilt 사용시에 Context 이슈 (0) | 2023.05.03 |
여러 유형의 Response type을 Gson를 이용하여 Sealed Class로 받기 (0) | 2023.04.14 |
IllegalStateException : Detected inconsistent adapter updates. (0) | 2023.04.10 |
Android 13 Notification permission 분기 (0) | 2023.03.29 |
Comments