styles.xml 983 B

1234567891011121314151617181920212223242526272829
  1. <resources>
  2. <style name="Trans" parent="Theme.AppCompat.Light.NoActionBar">
  3. <!-- Customize your theme here. -->
  4. <item name="colorPrimary">@color/colorPrimary</item>
  5. <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
  6. <item name="colorAccent">@color/colorAccent</item>
  7. <item name="android:background">@color/translate</item>
  8. </style>
  9. <!--全屏加透明-->
  10. <!--全屏-->
  11. <style name="FullScreenTheme" parent="Trans">
  12. <item name="android:windowFullscreen">true</item>
  13. <item name="android:windowNoTitle">true</item>
  14. </style>
  15. <!--透明,有任务栏电量时间等-->
  16. <!--快速启动app主题,告别app启动黑白屏-->
  17. <style name="SplashTheme" parent="FullScreenTheme">
  18. <item name="android:windowBackground">@drawable/splash_bg_img</item>
  19. <item name="android:windowIsTranslucent">false</item>
  20. </style>
  21. <!-- Base application theme. -->
  22. </resources>