AndroidTheme的设置

(2013-03-17 21:07:25) 转载
标签:

android

安卓

theme

androidmanifest

r.java

分类:Android(5/26)

在AndroidManifest.xml文件中,可以对每一个Activity设置android:theme

theme的设置 可以设置为系统自带的格式,也可以自定义格式。

A: 系统自带格式

@android:style/Theme.Black//背景黑色-有标题-非全屏
@android:style/Theme.Black.NoTitleBar//背景黑色-无标题-非全屏
@android:style/Theme.Black.NoTitleBar.Fullscreen//背景黑色-无标题-全屏显示
@android:style/Theme.Dialog //对话框显示

@android:style/Theme.InputMethod

@android:style/Theme.Light//背景白色-有标题-非全屏
@android:style/Theme.Light.NoTitleBar //背景白色-无标题-非全屏
@android:style/Theme.Light.NoTitleBar.Fullscreen //背景白色-无标题-全屏显示

@android:style/Theme.Light.Panel
@android:style/Theme.Light.WallpaperSettings //背景透明
@android:style/Theme.NoDisplay

@android:style/Theme.Translucent.NoTitleBar.Fullscreen //半透明、无标题栏、全屏

@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen

可以在单个Activity里设置,也可以在applicaiton里全局设置。比如:

<activity android:screenOrientation="portrait" android:name=".ui.RegisterActivity" android:theme="@android:style/Theme.NoTitleBar"></activity>

B:也可以自定义

在activity里加入 android:theme="@style/MyTitleBar" 再在 style.xml里加入

<style name="MyTitleBar" parent="android:Theme">
<item name="android:windowTitleSize">50dip</item>

<item name="android:windowTitleBackgroundStyle">@style/MyTitleBackground</item>
<item name="android:windowTitleStyle">@style/WindowTitle</item>
</style>

<!-- 自定义标题栏背景图 -->
<style name="MyTitleBackground" parent="android:TextAppearance.WindowTitle">
<item name="android:background">@drawable/bg_topbar</item>
</style>
<style name="WindowTitle" parent="android:TextAppearance.WindowTitle">
<item name="android:singleLine">true</item>

</style>

这里的parent是继承于android:Theme,所以在下面的样式里,只能是window开头的样式才起作用,所有样式请参考\sdk\docs\reference\android\R.attr.html,

也可以设置windowTitleBackgroundStyle 为@style/MyTitleBackground,这样就可以在MyTitleBackground里,设置背景图啦,

更多相关文章

  1. android 写 xml时,加layout与不加的区别(如layout_gravity与gravit
  2. Android中自定义shape
  3. 【Android布局】在程序中设置android:gravity 和 android:layout
  4. Android(安卓)动态加载(二) - 基础篇(二)
  5. Android实现全屏显示的方法
  6. (window)Android(安卓)Studio安装以及Fetching android sdk comp
  7. Android之系统自带的文字外观设置及实际显示效果图
  8. Android:TextView属性
  9. Android中的Shape使用总结

随机推荐

  1. Android网络数据开关用法简单示例
  2. 二、PocketSphinx-Android编译与运行
  3. [Android]自定义简易版日历控件
  4. Android(安卓)View的second layout pass
  5. android2.3 api demo 学习系列(20)--App/Me
  6. Android(安卓)最常用的快速开发工具类
  7. android获取网络图片过大的问题
  8. Android中读取文本文件中内容的方法
  9. Android(安卓)使用jsoup 进行数据抓取
  10. Android(安卓)8.1预置apk为可卸载