Android主题设置

来源:互联网 发布:销售数据字典怎么写 编辑:程序博客网 时间:2024/06/05 20:47

设置一个对话框样式的Activity:

<activity android:theme="@android:style/Theme.Dialog">

设置Activity透明背景:

<activity android:theme="@android:style/Theme.Translucent">

在 /res/values/styles.xml中写CutomTheme,设置Activity主题为自定义主题:

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

Mainfeist文件的application根节点设置主题,改变所有Activity主题:

<application android:theme="@style/CustomTheme">
原创粉丝点击