Created
April 8, 2020 03:26
-
-
Save showsky/e3cdbae6641014dbcf4462b6c6d4df1f to your computer and use it in GitHub Desktop.
Manager All Android Level themes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <resources> | |
| <style name="Base.V0.AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar"> | |
| <item name="colorPrimary">@color/yellow</item> | |
| <item name="colorPrimaryDark">@color/yellow_dark</item> | |
| <item name="colorAccent">@color/blue_1</item> | |
| </style> | |
| <style name="AppTheme" parent="Base.V0.AppTheme"> | |
| <!-- do somthing--> | |
| </style> | |
| </resources> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <resources> | |
| <style name="Base.V21.AppTheme" parent="Base.V0.AppTheme"> | |
| <item name="android:windowEnterTransition">@transition/fade_item</item> | |
| <item name="android:windowReturnTransition">@transition/fade_item</item> | |
| <item name="android:windowContentTransitions">true</item> | |
| <item name="android:statusBarColor">@color/black</item> | |
| </style> | |
| <style name="AppTheme" parent="Base.V21.AppTheme"> | |
| <!-- do somthing--> | |
| </style> | |
| </resources> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <resources> | |
| <style name="Base.V23.AppTheme" parent="Base.V21.AppTheme"> | |
| <item name="android:statusBarColor">@color/status_gray</item> | |
| <item name="android:windowLightStatusBar">true</item> | |
| </style> | |
| <style name="AppTheme" parent="Base.V23.AppTheme"> | |
| <!-- do somthing--> | |
| </style> | |
| </resources> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment