Android實現主題顏色切換功能通常有以下幾種方法:
<style name="AppTheme.Red" parent="Theme.AppCompat.Light">
<!-- 修改顏色屬性 -->
<item name="colorPrimary">@color/red</item>
<item name="colorPrimaryDark">@color/dark_red</item>
<item name="colorAccent">@color/red_accent</item>
</style>
<style name="AppTheme.Blue" parent="Theme.AppCompat.Light">
<!-- 修改顏色屬性 -->
<item name="colorPrimary">@color/blue</item>
<item name="colorPrimaryDark">@color/dark_blue</item>
<item name="colorAccent">@color/blue_accent</item>
</style>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.Button"
android:text="Button" />
// 切換到紅色主題
setTheme(R.style.AppTheme_Red);
recreate();
<color name="red">#FF0000</color>
<color name="blue">#0000FF</color>
// 獲取對應的顏色值
int colorPrimary = ContextCompat.getColor(this, R.color.red);
int colorPrimaryDark = ContextCompat.getColor(this, R.color.dark_red);
int colorAccent = ContextCompat.getColor(this, R.color.red_accent);
// 修改主題顏色
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
getWindow().setStatusBarColor(colorPrimaryDark);
}
getSupportActionBar().setBackgroundDrawable(new ColorDrawable(colorPrimary));
button.setBackgroundColor(colorAccent);
請注意,以上兩種方法都需要在切換主題時調用recreate()
方法來重新創建Activity,以使主題切換生效。