`
wyk525
  • 浏览: 48858 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

android中自带的主题(theme)的集

阅读更多
android中自带的主题(theme)的集锦: •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"
复制代码android中系统自带的样式(style)的集锦:

Android平台定义了三种字体大小。 "?android:attr/textAppearanceLarge"

"?android:attr/textAppearanceMedium"

"?android:attr/textAppearanceSmall"
复制代码使用方法: android:textAppearance="?android:attr/textAppearanceLarge"

android:textAppearance="?android:attr/textAppearanceMedium"

android:textAppearance="?android:attr/textAppearanceSmall"
复制代码或者 style="?android:attr/textAppearanceLarge"

style="?android:attr/textAppearanceMedium"

style="?android:attr/textAppearanceSmall"
复制代码Android字体颜色 android:textColor="?android:attr/textColorPrimary"

android:textColor="?android:attr/textColorSecondary"

android:textColor="?android:attr/textColorTertiary"

android:textColor="?android:attr/textColorPrimaryInverse"

android:textColor="?android:attr/textColorSecondaryInverse"
复制代码AndroidProgressBar style="?android:attr/progressBarStyleHorizontal"

style="?android:attr/progressBarStyleLarge"

style="?android:attr/progressBarStyleSmall"

style="?android:attr/progressBarStyleSmallTitle"
复制代码分隔符 横向: <View

android:layout_width="fill_parent"

android:layout_height="1dip"

android:background="?android:attr/listDivider" />
复制代码分隔符 纵向: <View android:layout_width="1dip"

android:layout_height="fill_parent"

android:background="?android:attr/listDivider" />
复制代码CheckBox   style="?android:attr/starStyle"
复制代码其它   //类似标题栏效果的TextView

style="?android:attr/listSeparatorTextViewStyle"



//其它有用的样式

android:layout_height="?android:attr/listPreferredItemHeight"



android:paddingRight="?android:attr/scrollbarSize"



style="?android:attr/windowTitleBackgroundStyle"



style="?android:attr/windowTitleStyle"



android:layout_height="?android:attr/windowTitleSize"



android:background="?android:attr/windowBackground"
分享到:
评论

相关推荐

    Android系统自带样式 (android:theme)

    android:theme=”@android:style/Theme.Dialog” : Activity显示为对话框模式 android:theme=”@android:style/Theme.NoTitleBar” : 不显示应用程序标题栏 android:theme=”@android:style/Theme.NoTitleBar....

    Android改Theme实现夜间模式

    Android改Theme实现夜间模式, 说明地址:http://blog.csdn.net/u012572538/article/details/38726549

    Android实现无标题栏全屏的方法

    Android中实现全屏、无标题栏的两种办法,另附Android系统自带样式的解释 实现全屏无标题栏: 1.在xml文件中进行配置 AndroidManifest.xml中,找到需要全屏或设置成无标题栏的Activity,在该Activity进行如下配置...

    Android Studio 全屏沉浸式透明状态栏效果的实现

    在Android API 19以上可以使用****.TranslucentDecor***有关的主题,自带相应半透明效果,Theme.Holo.NoActionBar.TranslucentDecor和Theme.Holo.Light.NoActionBar.TranslucentDecor两种主题为新增加的,所以要新建...

    2010年谢彦的android笔记

    3.2.7 Android自带的md5校验 61 3.2.8 将数据打进apk包 63 3.2.9 如何改变窗口的标题栏的布局 66 3.2.10 动态改变控件大小 67 3.2.11 缩放drawable 68 3.2.12 解析apk包内容 69 3.3 Java对C库的调用 70 3.3.1 ...

    Android下Activity全屏显示实现方法

    代码如下:android:theme=”@android:style/Theme.NoTitleBar.Fullscreen” 这样就可以实现这个Activity的全屏显示,如果只是不要标题栏,即需要保留系统自带的任务栏的话,则使用: 代码如下:android:theme=”@...

    android笔记.rar

    3.2.7 Android自带的md5 校验 ... ..61 3.2.8 将数据打进apk包 ... ..63 3.2.9 如何改变窗口的标题栏的布局 ... .66 3.2.10 动态改变控件大小... ...67 3.2.11 缩放drawable ... ...68 2 3.2.12 解析apk...

    Android实现夜间模式切换功能实现代码

    现在很多App都有夜间模式,特别是阅读类的App,夜间模式现在已经是阅读类App的标配了,事实上,日间模式与夜间模式就是给App定义并应用两套不同颜色的主题,用户可以自动或者手动的开启,今天用Android自带的support...

    无需root卸载安卓手机预装软件.zip

    com.huawei.android.thememanager 华为主题 com.huawei.appmarket 华为应用市场 com.huawei.parentcontrol 学生模式 com.huawei.wallet 华为钱包 com.huawei.phoneservice 华为会员服务 ...

    Android 全屏无标题栏的三种实现方法

    一、通过Java代码 在setContentView之前执行: requestWindowFeature(Window.FEATURE_...二、调用Android自带的Theme 直接在AndroidManifest.xml中需要全屏显示的Activity属性中添加 android:theme=@android:styl

    去掉activity默认动画效果的简单方法

    很多手机都会自带一些Activity切换动画,项目中如果我们需要禁用掉系统Activity切换的动画,可以使用如下方法: 一、重写Activity的Them中的windowAnimationStyle相关属性,并保存在res/values/styles.xml &lt;...

    Android 带进度条的WebView 示例代码

     如果不使用系统自带的TitleBar(即Activity被设置@android:style/Theme.NoTitleBar),那就需要自己来写进度条了,这里封装了一个自定义控件和加载网页的公共Activity,方便使用。 正文  一、截图 二、自定义...

    AlertDialogPro-holo和material 两种风格的对话框.zip

    AlertDialogPro可以让事情变得简单,它包含了AlertDialog的所有功能,同时还具有灵活的自定义功能,代码中还自带了已经定义好的holo和material 两种风格的对话框。项目地址:...

    ListView上滑和下滑,显示和隐藏Toolbar的实现方法

    先隐藏系统自带的actionbar,在AndroidManifest.xml文件标签中: android:theme=@style/Theme.AppCompat.Light.NoActionBar&gt; (注意此处的Activity应继承AppCompatActivity) 再在布局文件中添加Toolbar,activity_...

Global site tag (gtag.js) - Google Analytics