Skip to content

Instantly share code, notes, and snippets.

@showsky
Created April 8, 2020 03:26
Show Gist options
  • Select an option

  • Save showsky/e3cdbae6641014dbcf4462b6c6d4df1f to your computer and use it in GitHub Desktop.

Select an option

Save showsky/e3cdbae6641014dbcf4462b6c6d4df1f to your computer and use it in GitHub Desktop.
Manager All Android Level themes
<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>
<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>
<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