Android Study

Android Default Splash Disable ( api > 12 )

85chong 2023. 10. 24. 15:56
728x90
반응형
SMALL

안드로이드 12 버전 부터 앱을 실행할때 기본으로 무조건 앱 아이콘이 한번 뜨고 난후에 본인이 작업한 Splah 화면이 뜨게 되어있음

 

아래의 코드로 theme.xml 에 넣어서 , 해당 페이지에 적용해서 사용하면 앱을 실행하고 , 바로 본인이 작업한 Splash 화면이 뜨게 됨

 

    <!-- SplashTheme -->
    <style name="SplashTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="android:windowIsTranslucent">true</item>
    </style>

 

- 끝 -