Apply a theme to an Activity or application

来源:互联网 发布:iphone备份到mac哪里 编辑:程序博客网 时间:2024/06/03 06:23

Apply a theme to an Activity or application

To set a theme for all the activities of your application, open theAndroidManifest.xml file andedit the <application> tag to include theandroid:theme attribute with the style name. For example:

<application android:theme="@style/CustomTheme">

If you want a theme applied to just one Activity in your application, then add theandroid:theme attribute to the <activity> tag instead.


http://developer.android.com/guide/topics/ui/themes.html#ApplyATheme

0 0
原创粉丝点击