Android开发之style属性和提前定义样式
摘要 Android平台定义的主题样式: android:theme="@android:style/Theme.Dialog" // 将一个Activity显示为对话框模式android:theme="@android:style/Theme.NoTitleBar" // 不显示应用程序标题栏android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
//
Android平台定义的主题样式:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
android:theme= "@android:style/Theme.Dialog"
android:theme= "@android:style/Theme.NoTitleBar"
android:theme= "@android:style/Theme.NoTitleBar.Fullscreen"
android:theme= "@android:style/Theme.Light"
android:theme= "@android:style/Theme.Light.NoTitleBar"
android:theme= "@android:style/Theme.Light.NoTitleBar.Fullscreen"
android:theme= "@android:style/Theme.Black"
android:theme= "@android:style/Theme.Black.NoTitleBar"
android:theme= "@android:style/Theme.Black.NoTitleBar.Fullscreen"
android:theme= "@android:style/Theme.Wallpaper"
android:theme= "@android:style/Theme.Wallpaper.NoTitleBar"
android:theme= "@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen"
android:theme= "@android:style/Translucent"
android:theme= "@android:style/Theme.Translucent.NoTitleBar"
android:theme= "@android:style/Theme.Translucent.NoTitleBar.Fullscreen"
|
Android平台定义了三种字体大小:
1
2
3
|
"?android:attr/textAppearanceLarge" "?android:attr/textAppearanceMedium" "?android:attr/textAppearanceSmall" |
Android字体颜色:
1
2
3
4
5
|
android:textColor= "?android:attr/textColorPrimary" android:textColor= "?android:attr/textColorSecondary" android:textColor= "?android:attr/textColorTertiary" android:textColor= "?
android:textColor= "?
|
Android的ProgressBar样式:
1
2
3
4
|
style= "?android:attr/progressBarStyleHorizontal" style= "?
style= "?
style= "?android:attr/progressBarStyleSmallTitle" |
分隔符
横向:
1
2
3
|
<View "fill_parent" android:layout_height= "1dip" android:background= "?
|
纵向:
1
2
3
|
<View "1dip" android:layout_height= "fill_parent" android:background= "?
|
CheckBox样式:
style="?android:attr/starStyle"
类似标题栏效果的TextView
style="?android:attr/listSeparatorTextViewStyle"
其他实用的样式:
1
2
3
4
5
6
|
android:layout_height= "?android:attr/listPreferredItemHeight" android:paddingRight= "?
style= "?
style= "?android:attr/windowTitleStyle" android:layout_height= "?
android:background= "?
|
改动Activity的标题栏样式
如在styles.xml中添加:
1
2
3
4
5
6
7
8
9
|
<resources> <style "AutoWindowTitleBackground" > <item "android:background" > #778899</item> </style> <style "autoWindowTitlebar"
"android:Theme" > <item "android:windowTitleSize" >32dp</item> <item "android:windowTitleBackgroundStyle" >@style/AutoWindowTitleBackground</item> </style> </resources> |
接着再改动AndroidManifest.xml文件。找到要自己定义标题栏的Activity,加入上android:theme值。比方:
1
2
|
<activity ".MainActivity" android:theme= "@style/autoWindowTitlebar" > |
去掉全部Activity界面的标题栏
改动AndroidManifest.xml
在application 标签中加入:
1
|
android:theme=”@android:style/Theme.NoTitleBar”
|
Android开发之style属性和提前定义样式的更多相关文章
- Android开发之EditText属性详解
1.EditText输入的文字为密码形式的设置 (1)通过.xml里设置: 把该EditText设为:android:password="true" // 以”.”形式显示文本 ( ...
- 【转】 Android开发之EditText属性详解
原文网址:http://blog.csdn.net/qq435757399/article/details/7947862 1.EditText输入的文字为密码形式的设置 (1)通过.xml里设置: ...
- 【Android UI】Android开发之View的几种布局方式及实践
引言 通过前面两篇: Android 开发之旅:又见Hello World! Android 开发之旅:深入分析布局文件&又是“Hello World!” 我们对Android应用程序运行原理 ...
- Android开发之PopupWindow
/* * Android开发之PopupWindow * * Created on: 2011-8-8 * Author: blueeagle * Email: liujiaxiang@g ...
- Android开发之TextView高级应用
Android开发之TextView高级应用 我们平时使用TextView往往让它作为一个显示文字的容器,但TextView的功能并不局限于此.以下就和大家分享一下TextView的一些使用技巧. A ...
- Android开发之InstanceState详解
Android开发之InstanceState详解 本文介绍Android中关于Activity的两个神秘方法:onSaveInstanceState() 和 onRestoreInstanceS ...
- Android开发之旅: Intents和Intent Filters(理论部分)
引言 大部分移动设备平台上的应用程序都运行在他们自己的沙盒中.他们彼此之间互相隔离,并且严格限制应用程序与硬件和原始组件之间的交互. 我们知道交流是多么的重要,作为一个孤岛没有交流的东西,一定毫无意义 ...
- Android 开发之旅:深入分析布局文件&又是“Hello World!”
http://www.cnblogs.com/skynet/archive/2010/05/20/1740277.html 引言 上篇可以说是一个分水岭,它标志着我们从Android应用程序理论进入实 ...
- Android开发之InstanceState详解(转)---利用其保存Activity状态
Android开发之InstanceState详解 本文介绍Android中关于Activity的两个神秘方法:onSaveInstanceState() 和 onRestoreInstanceS ...
随机推荐
- java正则去掉小数点后多余0
需求:已知字符串为一数字字符形式,多为float,double转换过来,将其后多余的0与.去掉. package test; /** * 去掉多余的.与0 * @author Hust * @Time ...
- highcharts dynamic change line color
mouseOut: function(){ this.series.graph.attr({"stroke","#ccc"}) }
- 使用数组实现队列----《数据结构与算法分析---C语言描述》
一.h文件:my_que.h #ifndef _MY_QUE_H_ #define _MY_QUE_H_ struct QueRecord; typedef struct QueRecord* que ...
- 极限挑战—C#+ODP 100万条数据导入Oracle数据库仅用不到1秒
链接地址:http://www.cnblogs.com/armyfai/p/4646213.html 要:在这里我们将看到的是C#中利用ODP实现在Oracle数据库中瞬间导入百万级数据,这对快速批量 ...
- VDI转vmdk(VirtualBox与VMware硬盘格式转换)[转]
VirtualBox用了一段时间,感觉没想像中那么的好.虽然设置里可以分配多CPU,但是分配多CPU后经常系统挂掉.整体感觉不够稳定,但它也有好处就是开源免费.但经常挂机总不能一直使用它,索性转到Vm ...
- javascript 偏移量
通过四个属性可以获得元素的偏移量: 1.offsetHeight: 元素在垂直方向上占用的空间的大小,(像素).包括元素的高度,(可见的)水平滚动条的高度,上边框高度和下边框高度. 2.offsetW ...
- 零积分下载,2014年辛星mysql教程秋季版第一本已经完工,期待您的支持
经过一段时间的不懈努力.终于,2014年辛星mysql教程秋季版的第一本,即夯实基础已经完工,在csdn的下载地址为:去下载地址 ,假设左边地址跪了,能够去http://download.csdn.n ...
- RS100项目进展更新
1. 添加手机界面访问网页,毕竟PDA的屏幕大小和PC机大小不一致,完成了一自适应网页,便于在手机上观看实时画面: 2. 此项目为一个远程视频监控+远程开关项目,远程PC机或者手机能操作到监控端的开关 ...
- UVA 10911 Forming Quiz Teams(dp + 集合最优配对问题)
4th IIUC Inter-University Programming Contest, 2005 G Forming Quiz Teams Input: standard input Outpu ...
- 基于visual Studio2013解决面试题之0802数字最多元素
题目