我是android的新手。我想制作自定义主题。我希望用户可以通过点击视图来更改主题。我制作了一个GridView布局和自定义主题。但我不知道如何将theme.xml文件存储到在GridView中显示它。我几乎搜索了3个小时。你能给我一个如何存储的提示。谢谢。
修改
<style name="My_Theme" parent="Theme.AppCompat.Light">
<item name="page">@style/page_background</item>
<item name="button">@style/button</item>
<item name="text">@style/text</item>
</style>
我想在单击GridView时使用My_Theme
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_weight="fill_parent"
android:numColumns="auto_fit"
android:columnWidth="90dp"
android:horizontalSpacing="10dp"
android:verticalSpacing="10dp"
android:gravity="center"
android:stretchMode="columnWidth"
>
但我不知道如何存储theme.xml文件以在网格视图中显示它