안드로이드/XML

[Android Studio] 안드로이드 스튜디오 시스템 배경색 변경하기 Set System Default BackgroundColor

eqrw105 2021. 4. 17. 03:57

[Android Studio] 안드로이드 스튜디오 시스템 배경색 변경하기 Set System Default BackgroundColor

 

변경전
변경후

 

1. App Theme Style에서 windowBackground 설정

<style name="AppTheme" parent="Theme.AppCompat">
        <item name="android:windowBackground">@color/colorPrimaryDark</item>
</style>

 

2. Application 설정

<application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">