Programming/Android

[안드로이드] 앱 시작시 하얀화면 없애기

web data 2019. 12. 14. 23:21

style.xml에 아래 내용 추가 


<!-- Base application theme. -->

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

    <!-- Customize your theme here. -->

    <item name="colorPrimary">@color/colorPrimary</item>

    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>

    <item name="colorAccent">@color/colorAccent</item>

    <item name="android:windowContentOverlay">@null</item>

    <item name="android:windowIsTranslucent">true</item>

</style>


출처 : https://devwilson.tistory.com/5