theme主题
应用于Activity 或者 Application
1.将Activity编程对话框
Activity下添加属性:android:theme="@android:style/Theme.Dialog"
2.自定义theme
在/res/values/下面新建mytheme.xml
使用:
如果想要在整个应用下使用主题,那么在<application>节点下,添加android:theme="@style/mytheme"
如果只是在单个Activity下使用主题,那么在<activity>节点下,添加android:theme="@style/mytheme"
3.附加color.xml
在/res/values/下面新建color.xml
应用于Activity 或者 Application
1.将Activity编程对话框
Activity下添加属性:android:theme="@android:style/Theme.Dialog"
2.自定义theme
在/res/values/下面新建mytheme.xml
内容:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="mytheme">
<item name="android:windowNoTitle">true</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowBackground">@color/red</item>
</style>
</resources>
使用:
如果想要在整个应用下使用主题,那么在<application>节点下,添加android:theme="@style/mytheme"
如果只是在单个Activity下使用主题,那么在<activity>节点下,添加android:theme="@style/mytheme"
<activity
android:name="com.example.style.MainActivity"
android:label="@string/app_name"
android:theme="@style/mytheme" >
3.附加color.xml
在/res/values/下面新建color.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="red">#f00</color>
</resources>