Я хочу изменить AppTheme на мою тему, которую я создал. Для этого мне нужна кнопка в одном действии, которая меняет цвет в моем приложении.
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<!-- Tema 2 -->
<style name="Tema2" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">#6600ff</item>
<item name="colorPrimaryDark">#ff99ff</item>
<item name="colorAccent">#ff6600</item>
</style>
<!-- Tema 3 -->
<style name="Tema3" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">#008060</item>
<item name="colorPrimaryDark">#6699ff</item>
<item name="colorAccent">#993300</item>
</style>