styles.xml 930 Bytes
<resources>

    <!-- Base application theme. -->
    <style name="NoActionBar" 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:statusBarColor">#FFF</item>
        <item name="android:windowLightStatusBar">true</item>
    </style>

    <!-- Splash screen -->

    <style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
        <item name="android:windowBackground">@drawable/background_splash</item>
    </style>

    <style name="EditTheme" >
        <!--위에 에딧템 뒤에 parent="Theme.AppCompat.Light.NoActionBar"-->
        <item name="colorAccent">#29ABE2</item>
        <item name="android:colorControlNormal">#29ABE2</item>
    </style>

</resources>