Android App um eine LED-Strip zu steuern
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

themes.xml 556B

12345678910111213
  1. <resources>
  2. <!-- Base application theme. -->
  3. <style name="Theme.LEDLampControl" parent="Theme.AppCompat.DayNight.NoActionBar">
  4. <!-- Customize your theme here. -->
  5. </style>
  6. <!-- Splash Screen theme -->
  7. <style name="Theme.App.Starting" parent="Theme.SplashScreen">
  8. <item name="windowSplashScreenBackground">@color/splash_background</item>
  9. <item name="windowSplashScreenAnimatedIcon">@mipmap/ic_launcher</item>
  10. <item name="postSplashScreenTheme">@style/Theme.LEDLampControl</item>
  11. </style>
  12. </resources>