android中style和Theme的使用区别
原文地址:https://blog.csdn.net/wenzhi20102321/article/details/53932592
一.Style的使用
使用style属性可以很方便的抽取一些属性,不用重复写很多相同的属性。
(一)设置属性的集合
1.定义
<style name="TextViewStyle">
<item name="android:textColor">#000</item>
<item name="android:textSize">20sp</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">match_parent</item>
<item name="android:background">#8f00</item>
<item name="android:gravity">center_horizontal</item>
</style>
<style name="TextViewStyle1" parent="TextViewStyle">
<item name="android:textSize">40sp</item>
<item name="android:background">#8ff0</item>
</style>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
这里parent属性定义的可以是一个style。
2.使用:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
style="@style/TextViewStyle"
android:text="style" />
<TextView
style="@style/TextViewStyle1"
android:text="style1" />
<TextView
style="@style/TextViewStyle"
android:text="style2"
android:textSize="40sp" />
</LinearLayout>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
3.显示的效果
这里可以把很多属性写成style来使用,不只是TextView控件标签,其他的任何控件布局标签都可以,如果几个属性相同都是可以抽成style方便调用,后面使用是可以覆盖掉某些属性的。
二.Theme主题的设置
(一)设置全屏,这个应用比较多
1.style设置
<style name="AppTheme" parent="AppBaseTheme">
<!-- 设置无标题 -->
<item name="android:windowNoTitle">true</item>
<!-- 设置全屏 -->
<item name="android:windowFullscreen">true</item>
</style>
在AndroidManifest.xml中
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
。。。
</application>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
2.直接设置
在AndroidManifest.xml中根据需要在或中使用自定义的Android主题方式进行设置。
android:theme="@style/theme_fullScreen"
- 1
3.使用java代码设置
//取消标题
this.requestWindowFeature(Window.FEATURE_NO_TITLE);或
requestWindowFeature(R.style.AppTheme);
//全屏
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
- 1
- 2
- 3
- 4
- 5
- 6
无标题的全屏显示:
(二)Theme主题大全
窗口主题设置:(这里主要对于Activity设置,用到系统自动主题内容)
•android:theme=”@android:style/Theme.Dialog” 将一个Activity显示为能话框模式
•android:theme=”@android:style/Theme.NoTitleBar” 不显示应用程序标题栏
•android:theme=”@android:style/Theme.NoTitleBar.Fullscreen” 不显示应用程序标题栏,并全屏
•android:theme=”Theme.Light” 背景为白色
•android:theme=”Theme.Light.NoTitleBar” 白色背景并无标题栏
•android:theme=”Theme.Light.NoTitleBar.Fullscreen” 白色背景,无标题栏,全屏
•android:theme=”Theme.Black” 背景黑色
•android:theme=”Theme.Black.NoTitleBar” 黑色背景并无标题栏
•android:theme=”Theme.Black.NoTitleBar.Fullscreen” 黑色背景,无标题栏,全屏
•android:theme=”Theme.Wallpaper” 用系统桌面为应用程序背景
•android:theme=”Theme.Wallpaper.NoTitleBar” 用系统桌面为应用程序背景,且无标题栏
•android:theme=”Theme.Wallpaper.NoTitleBar.Fullscreen” 用系统桌面为应用程序背景,无标题栏,全屏
•android:theme=”Translucent” 半透明
•android:theme=”Theme.Translucent.NoTitleBar”
•android:theme=”Theme.Translucent.NoTitleBar.Fullscreen”
•android:theme=”Theme.Panel”
•android:theme=”Theme.Light.Panel”
(三)解决Activity切换黑屏、白屏问题:
//1、设置背景图Theme
<style name="Theme.AppStartLoad" parent="android:Theme">
<item name="android:windowBackground">@drawable/ipod_bg</item>
<item name="android:windowNoTitle">true</item>
</style>
//2、设置透明Theme
<style name="Theme.AppStartLoadTranslucent" parent="android:Theme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowNoTitle">true</item>
</style>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
Theme1 程序启动快,界面先显示背景图,然后再刷新其他界面控件。给人刷新不同步感觉。
Theme2 给人程序启动慢感觉,界面一次性刷出来,刷新同步。
三.设置窗体透明度,昏暗度,背景模糊处理:
(一)透明度
WindowManager.LayoutParams lp=getWindow().getAttributes();
lp.alpha=0.5f;
getWindow().setAttributes(lp);
alpha在0.0f到1.0f之间。
- 1
- 2
- 3
- 4
(二)昏暗度
WindowManager.LayoutParams lp=getWindow().getAttributes();
lp.dimAmount=0.5f;
getWindow().setAttributes(lp);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);
dimAmount在0.0f和1.0f之间。
- 1
- 2
- 3
- 4
- 5
(三)背景模糊
getWindow().setFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND,
WindowManager.LayoutParams.FLAG_BLUR_BEHIND);
View设置View view=...
view.getBackground().setAlpha(100);//0~255透明度值 ,0为完全透明,255为不透明
- 1
- 2
- 3
- 4
上面的知识,不一定说都要会用,知道常用的就可以了,有些不常用的可以查阅后使用,但是使用的方式是必须要知道了。
推荐阅读
-
Shell脚本中单引号(‘)和双引号(“)的使用区别
-
javascript中apply、call和bind的使用区别
-
sql中varchar和nvarchar的区别与使用方法
-
MySQL中datetime和timestamp的区别及使用详解
-
SQL2005中char nchar varchar nvarchar数据类型的区别和使用环境讲解
-
Android 中raw和assets文件夹的区别
-
Android MotionEvent中getX()和getRawX()的区别实例详解
-
Android中应用界面主题Theme使用方法和页面定时跳转应用
-
Android中dip、dp、sp、pt和px的区别详解
-
sql 中 并集union和union all的使用区别