首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

自定义正题theme

2012-09-28 
自定义主题theme自定义主题很容易,先建一个res/values/styles.xml文件,再到这个文件中加入主题样式文件。st

自定义主题theme
自定义主题很容易,先建一个res/values/styles.xml文件,再到这个文件中加入主题样式文件。style标签还可以继承,可以继承父类中的所有的元素。

代码如下:

<resources><style name="Theme.CustomDialog" parent="android:style/Theme.Dialog"><item name="android:windowBackground">@drawable/filled_box</item></style></resources>

热点排行