阅读量:0
在主题切换中,可以使用layer-list来定义不同状态下的背景样式。例如,可以在res/drawable文件夹下创建不同的xml文件,分别定义不同主题下的背景样式。然后在布局文件中使用android:background属性来引用不同的背景样式。
例如,可以创建一个res/drawable文件夹下的bg_theme1.xml文件,定义如下背景样式:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <shape android:shape="rectangle"> <solid android:color="#FF0000" /> </shape> </item> </layer-list>
再创建一个res/drawable文件夹下的bg_theme2.xml文件,定义如下背景样式:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <shape android:shape="rectangle"> <solid android:color="#00FF00" /> </shape> </item> </layer-list>
然后在布局文件中使用android:background属性来引用不同的背景样式:
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button" android:background="@drawable/bg_theme1" />
在切换主题时,只需改变按钮的背景样式即可实现主题切换。