android学习之-Theme和Style
android style和theme的使用。
style:样式,用来描述单独的view控件,改变其样式。
theme:主题,用来控制整个应用的主题,或者某个activity的主题。 style的使用:改变某控件的样式。
在style.xml中描述样式信息
- <?xml version="1.0" encoding="utf-8"?>
- <resources>
- <style name="TextAttr">
- <item name="android:textSize">22sp</item>
- <item name="android:textColor">#0000CC</item>
- </style>
- </resources>
在控件(TextView,EditText,Layout)中使用控件来显示其样式。
<TextView
style="@style/TextAttr"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="样式" />
Theme的使用,用来改变窗体的展示。
- <?xml version="1.0" encoding="utf-8"?>
- <resources>
- <style name="TextAttr">
- <item name="android:textSize">22sp</item>
- <item name="android:textColor">#0000CC</item>
- </style>
- <style name="ActivityTheme">
- <item name="android:windowNoTitle">true</item>
- </style>
- </resources>
在项目清单中:(应用在activity)
- <application
- android:allowBackup="true"
- android:icon="@drawable/ic_launcher"
- android:label="@string/app_name">
- <activity
- android:name="com.enterise.always.test.activity.MainActivity"
- android:label="@string/app_name"
- android:theme="@style/ActivityTheme"
- >
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
在项目清单中:(应用在application中)
- <application
- android:allowBackup="true"
- android:icon="@drawable/ic_launcher"
- android:theme="@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen"
- android:label="@string/app_name">
@和?的使用:
@符号表明了我们应用的资源是之前有定义过的,或者是android框架中已经定义过的,我们直接对其进行使用。
?引用了当前主题中的值。
- <style name="ActivityTheme">
- <item name="android:windowNoTitle">true</item>
- <item name="android:windowFullscreen">?android:windowNoTitle</item>
- </style>
上述:
- ?android:windowNoTitle
引用的是name=?android:windowNoTitle的值,也就是true。
主题中:
- <activity
- android:name="com.enterise.always.test.activity.MainActivity"
- android:label="@string/app_name"
- android:theme="@style/ActivityTheme"(应用自定义样式)
- >
- <activity
- android:name="com.enterise.always.test.activity.MainActivity"
- android:label="@string/app_name"
- android:theme="@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen"(调用系统中的样式,来展示当前的activity主题)
- >
- reference--》R。style
- Constants
- int Animation Base style for animations.
- int Animation_Activity Standard animations for a full-screen window or activity.
- int Animation_Dialog Standard animations for a non-full-screen window or activity.
- int Animation_InputMethod Window animations that are applied to input method overlay windows.
- int Animation_Toast
- int Animation_Translucent Standard animations for a translucent window or activity.
- int MediaButton
- int MediaButton_Ffwd
- int MediaButton_Next
- int MediaButton_Pause
- int MediaButton_Play
- int MediaButton_Previous
- int MediaButton_Rew
- int TextAppearance
- int TextAppearance_DialogWindowTitle
- int TextAppearance_Inverse
- int TextAppearance_Large
- int TextAppearance_Large_Inverse
- int TextAppearance_Medium
- int TextAppearance_Medium_Inverse
- int TextAppearance_Small
- int TextAppearance_Small_Inverse
- int TextAppearance_Theme
- int TextAppearance_Theme_Dialog
- int TextAppearance_Widget
- int TextAppearance_Widget_Button
- int TextAppearance_Widget_DropDownHint
- int TextAppearance_Widget_DropDownItem
- int TextAppearance_Widget_EditText
- int TextAppearance_Widget_IconMenu_Item
- int TextAppearance_Widget_TabWidget
- int TextAppearance_Widget_TextView
- int TextAppearance_Widget_TextView_PopupMenu
- int TextAppearance_Widget_TextView_SpinnerItem
- int TextAppearance_WindowTitle
- int Theme The default system theme.
- int Theme_Black Special variation on the default theme that ensures the background is completely black.
- int Theme_Black_NoTitleBar Variant of the black theme with no title bar
- int Theme_Black_NoTitleBar_Fullscreen Variant of the black theme that has no title bar and fills the entire screen
- int Theme_Dialog Default theme for dialog windows and activities, which is used by the Dialog class.
- int Theme_InputMethod Default theme for input methods, which is used by the InputMethodService class.
- int Theme_Light Theme for a light background with dark text on top.
- int Theme_Light_NoTitleBar Variant of the light theme with no title bar
- int Theme_Light_NoTitleBar_Fullscreen Variant of the light theme that has no title bar and fills the entire screen
- int Theme_Light_Panel Default light theme for panel windows.
- int Theme_Light_WallpaperSettings Theme for a wallpaper's setting activity that is designed to be on top of a light background.
- int Theme_NoDisplay Default theme for activities that don't actually display a UI; that is, they finish themselves before being
- resumed.
- int Theme_NoTitleBar Variant of the default (dark) theme with no title bar
- int Theme_NoTitleBar_Fullscreen Variant of the default (dark) theme that has no title bar and fills the entire screen
- int Theme_Panel Default dark theme for panel windows.
- int Theme_Translucent Default theme for translucent activities, that is windows that allow you to see through them to the windows
- behind.
- int Theme_Translucent_NoTitleBar Variant of the translucent theme with no title bar
- int Theme_Translucent_NoTitleBar_Fullscreen Variant of the translucent theme that has no title bar and fills the entire screen
- int Theme_Wallpaper Default theme for windows that want to have the user's selected wallpaper appear behind them.
- int Theme_WallpaperSettings Theme for a wallpaper's setting activity that is designed to be on top of a dark background.
- int Theme_Wallpaper_NoTitleBar Variant of the translucent theme with no title bar
- int Theme_Wallpaper_NoTitleBar_Fullscreen Variant of the translucent theme that has no title bar and fills the entire screen
- int Widget Widget Styles
- int Widget_AbsListView
- int Widget_AutoCompleteTextView
- int Widget_Button
- int Widget_Button_Inset
- int Widget_Button_Small
- int Widget_Button_Toggle
- int Widget_CompoundButton
- int Widget_CompoundButton_CheckBox
- int Widget_CompoundButton_RadioButton
- int Widget_CompoundButton_Star
- int Widget_DropDownItem
- int Widget_DropDownItem_Spinner
- int Widget_EditText
- int Widget_ExpandableListView
- int Widget_Gallery
- int Widget_GridView
- int Widget_ImageButton
- int Widget_ImageWell
- int Widget_KeyboardView
- int Widget_ListView
- int Widget_ListView_DropDown
- int Widget_ListView_Menu
- int Widget_ListView_White
- int Widget_PopupWindow
- int Widget_ProgressBar
- int Widget_ProgressBar_Horizontal
- int Widget_ProgressBar_Inverse
- int Widget_ProgressBar_Large
- int Widget_ProgressBar_Large_Inverse
- int Widget_ProgressBar_Small
- int Widget_ProgressBar_Small_Inverse
- int Widget_RatingBar
- int Widget_ScrollView
- int Widget_SeekBar
- int Widget_Spinner
- int Widget_TabWidget
- int Widget_TextView
- int Widget_TextView_PopupMenu
- int Widget_TextView_SpinnerItem
- int Widget_WebView
- android:theme="@android:style/Theme.Dialog" 将一个Activity显示为对话框模式
- 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:theme="@android:style/Theme.Panel" 面板风格显示
- android:theme="@android:style/Theme.Light.Panel" 平板风格显示
- <img src="http://img.blog.csdn.net/20131011150258187?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvemhvdWd1b3Nlbl9hbHdheXM=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="">
版权声明:本文为博主原创文章,未经博主允许不得转载。
版权声明:本文为博主原创文章,未经博主允许不得转载。
- 上一篇android学习之-Junit测试
- 下一篇设计模式之--单例(Singleton)
- http://www.cnblogs.com/linlf03/archive/2013/03/14/2959164.html
- http://blog.csdn.net/zhouguosen_always/article/details/12616593
- http://www.linuxidc.com/Linux/2011-08/41087.htm
- http://www.cnblogs.com/tinyphp/p/3826098.html
android学习之-Theme和Style的更多相关文章
- Android开发之Theme、Style探索及源码浅析
1 背景 前段时间群里有伙伴问到了关于Android开发中Theme与Style的问题,当然,这类东西在网上随便一搜一大把模板,所以关于怎么用的问题我想这里也就不做太多的说明了,我们这里把重点放在理解 ...
- Android样式(style)和主题(theme)资源介绍-android学习之旅(五十六)
样式(style)资源 代码示例 <?xml version="1.0" encoding="utf-8"?> <LinearLayout x ...
- 【转】Pro Android学习笔记(二四):用户界面和控制(12):Style和Theme
目录(?)[-] 静态格式 代码中设定 Style Theme 静态格式 在res/values中设置静态的Style,在资源中设置静态Style可使用的HTML格式有<i> <u& ...
- android 中theme和style的语法相关
1.theme和style都是一组属性的集合,用于定义文本.颜色.大小等显示风格.他们都是资源,可以用android系统级别的一些默认的风格和主题资源,你也可以自定义你自己的主题和风格资源. 2.自定 ...
- Android 避免APP启动闪黑屏的解决办法(Theme和Style)
前几天Boss就反应说,机器每次启动程序都会闪一下黑屏,这个客户不接受.没办法,只能想想怎么解决,最后找到了下面的方法.闪黑屏的原因主要是我们启动Activity的时候,需要跑完onCreate和on ...
- 【转】Android 避免APP启动闪黑屏(Theme和Style)
前几天Boss就反应说,机器每次启动程序都会闪一下黑屏,这个客户不接受.没办法,只能想想怎么解决,最后找到了下面的方法.闪黑屏的原因主要是我们启动Activity的时候,需要跑完onCreate和on ...
- Android 避免APP启动闪黑屏(Theme和Style)
前几天Boss就反应说,机器每次启动程序都会闪一下黑屏,这个客户不接受.没办法,只能想想怎么解决,最后找到了下面的方法.闪黑屏的原因主要是我们启动Activity的时候,需要跑完onCreate和on ...
- Android笔记(七十二) Style和Theme
我们尝尝需要使用setText.setColor.setTextSize等属性来设置控件的样式,但是每个控件都需要设置这些属性,工作量无疑是巨大的,并且后期维护起来也不方便. Style Androi ...
- 正确使用 Android 的 Theme 和 Style
原文:http://www.tuicool.com/articles/ZjEZFj Android 5.0 可以给一个 View 单独设置一个 theme 了,其主要用途就是用在 ToolBar 上, ...
随机推荐
- Java变量名命名规则
$ .字母.下划线开头都行,后面的可以是数字.字母.下划线: 匈牙利命名法.Camel命名法与Pascal命名法 匈牙利命名法:在Windows编程中使用非常普遍,由微软的一位匈牙利程序员提出.匈牙利 ...
- 超赞!聊聊WEB APP、HYBRID APP与NATIVE APP的设计差异
编者按:这3类主流应用你都了解吗?设计师除了要有视觉功夫,对不同形式的APP也应当了然于胸,今天百度的同学写了一篇非常全面的总结,帮你迅速搞定3类主流APP的设计方法,附带一大波避雷针,带你巧妙跳过A ...
- iOS 2x 3x
iOS中: 备注: Retina是一种显示技术,可以将把更多的像素点压缩至一块屏幕里,从而达到更高的分辨率并提高屏幕显示的细腻程度.而其最初该技术是用于苹果的iPhone4上.其屏幕分辨率为960×6 ...
- 【servlet】客户端是否可以访问到WEB-INF下的jsp文件
一般情况下(不考虑出现安全问题被入侵,那样啥都能访问到),WEB-INF下的jsp文件单凭浏览器端请求时访问不到的. 想访问的话需要通过服务端servlet的转发. 下面通过转发和重定向的尝试来观察访 ...
- Android开机动画启动流程
android开机动画启动流程 从android的Surface Flinger服务启动分析知道,开机动画是在SurfaceFlinger实例通过调用startBootAnim()启动的. 下面我 ...
- jquery 控制文本输入的字数
<textarea maxlength="200" id="remarks" onkeyup="title_len();">&l ...
- .gitigore 相关
为什么要配置.gitigore 在我们使用git的过程当中,不是任何文件都需要commit到本地或者远程仓库的,比如一些三方库文件.那么作为一个git新手,很多人不知道如何配置.gitignore文件 ...
- Swift - UIPasteboard剪贴板的使用详解(复制、粘贴文字和图片)
转载自:http://www.hangge.com/blog/cache/detail_1085.html UITextField.UITextView组件系统原生就支持文字的复制,但有时我们需要让其 ...
- DHCPv6
SLAAC(RFC4862)(StatelessAddressAutoconfiguration),无状态自动配置 IT网,http://www.it.net.cn DHCPv6包含以下两种形式: n ...
- sql server 2005导出数据
*/ EXEC sp_configure 'show advanced options', 1 GO */ 配置选项 'show advanced options' 已从 0 更改为 1.请运 ...