在程序设计中,有时候要更好程序主题,一般有两种方式,一种是用setTheme函数来指定样式,另外一种是在AndroidManifest.xml中直接指定。要更改主题,我们一般都用setTheme函数。
这个地方我们就说说setTheme函数,在网上也看了说setTheme必须放在onCreate之前执行,后面执行是无效的,看了下资料说是:设置基础主题上下文,被称为视图实例化之前的上下文。那就放在onCreate前执行吧:
看下代码:
- @Override
- public void onCreate(Bundle savedInstanceState) {
- this.setTheme(R.style.Default);
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
-
- }
我们看下main.xml代码:
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- <ImageView android:id="@+id/myImageView"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="0dip"
- android:gravity="center"
- android:src="?image"
- android:layout_gravity="center" />
- </LinearLayout>
看看样式style.xml代码:
- <?xml version="1.0" encoding="utf-8"?>
- <resources>
-
- <!-- 默认风格 -->
- <style name="Default" parent="@android:style/Theme">
- <item name="image">@drawable/white</item>
- </style>
-
- <!-- 夜间模式 -->
- <style name="ThemeNight" parent="@android:style/Theme">
- <item name="image">@drawable/black</item>
- </style>
-
- </resources>
要更改主题 我们事件中写上修改样式就ok:
- this.setTheme(R.style.ThemeNight);