android 中系统自带的主题与样式(theme and style)

android中自带的主题(theme)的集锦:
  1. •android:theme="@android:style/Theme.Dialog"   将一个Activity显示为对话框模式
  2. •android:theme="@android:style/Theme.NoTitleBar"  不显示应用程序标题栏
  3. •android:theme="@android:style/Theme.NoTitleBar.Fullscreen"  不显示应用程序标题栏,并全屏
  4. •android:theme="@android:style/Theme.Light"  背景为白色
  5. •android:theme="@android:style/Theme.Light.NoTitleBar"  白色背景并无标题栏
  6. •android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"  白色背景,无标题栏,全屏
  7. •android:theme="@android:style/Theme.Black"  背景黑色
  8. •android:theme="@android:style/Theme.Black.NoTitleBar"  黑色背景并无标题栏
  9. •android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"    黑色背景,无标题栏,全屏
  10. •android:theme="@android:style/Theme.Wallpaper"  用系统桌面为应用程序背景
  11. •android:theme="@android:style/Theme.Wallpaper.NoTitleBar"  用系统桌面为应用程序背景,且无标题栏
  12. •android:theme="@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen"  用系统桌面为应用程序背景,无标题栏,全屏
  13. •android:theme="@android:style/Translucent" 半透明效果
  14. •android:theme="@android:style/Theme.Translucent.NoTitleBar"  半透明并无标题栏
  15. •android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"  半透明效果,无标题栏,全屏
  16. •android:theme="@android:style/Theme.Panel"
  17. •android:theme="@android:style/Theme.Light.Panel"
复制代码
android中系统自带的样式(style)的集锦:

Android平台定义了三种字体大小。
  1. "?android:attr/textAppearanceLarge"
  2. "?android:attr/textAppearanceMedium"
  3. "?android:attr/textAppearanceSmall"
复制代码
使用方法:
  1. android:textAppearance="?android:attr/textAppearanceLarge"
  2. android:textAppearance="?android:attr/textAppearanceMedium"
  3. android:textAppearance="?android:attr/textAppearanceSmall"
复制代码
或者
  1. style="?android:attr/textAppearanceLarge"
  2. style="?android:attr/textAppearanceMedium"
  3. style="?android:attr/textAppearanceSmall"
复制代码
Android字体颜色
  1. android:textColor="?android:attr/textColorPrimary"
  2. android:textColor="?android:attr/textColorSecondary"
  3. android:textColor="?android:attr/textColorTertiary"
  4. android:textColor="?android:attr/textColorPrimaryInverse"
  5. android:textColor="?android:attr/textColorSecondaryInverse"
复制代码
AndroidProgressBar
  1. style="?android:attr/progressBarStyleHorizontal"
  2. style="?android:attr/progressBarStyleLarge"
  3. style="?android:attr/progressBarStyleSmall"
  4. style="?android:attr/progressBarStyleSmallTitle"
复制代码
分隔符 横向:
  1. <View
  2. android:layout_width="fill_parent"
  3. android:layout_height="1dip"
  4. android:background="?android:attr/listDivider" />
复制代码
分隔符 纵向:
  1. <View android:layout_width="1dip"
  2. android:layout_height="fill_parent"
  3. android:background="?android:attr/listDivider" />
复制代码
CheckBox  
  1. style="?android:attr/starStyle"
复制代码
其它  
  1. //类似标题栏效果的TextView
  2. style="?android:attr/listSeparatorTextViewStyle"

  3. //其它有用的样式
  4. android:layout_height="?android:attr/listPreferredItemHeight"

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

  6. style="?android:attr/windowTitleBackgroundStyle"

  7. style="?android:attr/windowTitleStyle"

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

  9. android:background="?android:attr/windowBackground"
复制代码
参考地址:
http://blog.csdn.net/xingfuyusheng/article/details/6777337
http://sunney2012.iteye.com/blog/1163543
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
如果你想在Android系统使用`SettingsLib`模块定义的样式,你需要将`SettingsLib`模块添加到Android系统的编译环境。这可以通过修改Android系统的`build/core/main.mk`文件来实现。 首先,将以下代码添加到`build/core/main.mk`文件的`PRODUCT_PACKAGES`列表: ``` SettingsLib ``` 然后,将以下代码添加到`build/core/main.mk`文件的`PRODUCT_MODULES`列表: ``` SettingsLib: $(call all-subdir-makefiles, SettingsLib) ``` 接下来,在`SettingsLib`模块的目录创建一个`Android.mk`文件,其包含以下代码: ``` LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE_TAGS := optional LOCAL_MODULE := SettingsLib LOCAL_SRC_FILES := \ $(call all-java-files-under, java) \ $(call all-Iaidl-files-under, aidl) LOCAL_AAPT_FLAGS := \ --auto-add-overlay \ --extra-packages com.android.settings LOCAL_PACKAGE_NAME := SettingsLib LOCAL_JAVA_LIBRARIES := \ android-support-v4 \ com.android.internal.annotations \ com.android.internal.customview LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res LOCAL_PROGUARD_ENABLED := disabled include $(BUILD_PACKAGE) ``` 上面的代码将`SettingsLib`模块打包为一个Android应用程序,并将其标记为可选模块。它还指定了该模块的包名、资源目录、依赖项等。 最后,运行`make`命令编译Android系统,并将`SettingsLib`模块添加到系统。一旦添加到系统,你就可以在Android系统的代码引用`SettingsLib`模块定义的样式了。例如,在`Settings`应用程序的布局文件或主题文件,你可以使用以下代码来引用`SettingsLib`模块定义的`SettingsTheme`样式: ``` <style name="SettingsTheme" parent="@*android:style/Theme.Material"> <!-- Add your customizations here --> </style> ``` 这将使`Settings`应用程序使用`SettingsLib`模块定义的样式作为其主题

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值