android theme 使用方法,Android入门之Style与Theme用法实例解析

就目前的互联网发展来看,已经有越来越多互联网企业都在Android平台上部署其客户端,并且为了提升用户体验,这些客户端都做得布局合理而且美观。本文所要介绍的Android的Style设计就是提升用户体验的关键之一。Android上的Style分为了两个方面:

1.Theme是针对窗体级别的,改变窗体样式;

2.Style是针对窗体元素级别的,改变指定控件或者Layout的样式。

Android系统的themes.xml和style.xml(位于/base/core/res/res/values/)包含了很多系统定义好的style,建议在里面挑个合适的,然后再继承修改。以下的这段代码属性是在Themes中比较常见的,源自Android系统本身的themes.xml:

@android:drawable/screen_background_dark

@null

false

false

false

@android:drawable/title_bar_shadow

@android:style/WindowTitle

25dip

@android:style/WindowTitleBackground

@android:style/Animation.Activity

至于控件的Style设计就范围大多了,看看Eclipse的Android控件属性编辑器[Properties]就大概知道有哪些条目,而Android内置的style.xml也只是定义每个控件的默认样式而已。不过控件的style不建议大改,耐看的style更能让用户长时间使用软件。另外,控件的Style在很多情况下都用到9.png,学习9.png就必须到/base/core/res/res/drawable-hdpi里面看看,里面有很多系统内置的9.png。

注意:为了研究Android的Style和Theme,强烈建议下载Android的base.git!

先来看看本文程序的效果,如下图所示:

4fedc128d383e485f4d43e67b9802f00.gif

本文程序的themes.xml代码如下,自定义了WindowTitle,:

true

60dip

@style/WindowTitle

true

#BB000000

2.75

要为Activity使用theme,要么使用代码 setTheme(R.style.Theme),要么在Application Manifest里面设置如下:

410fa06922629a3d1a974807dd84a6f7.gif

本文程序的styles.xml代码如下,background默认使用的是9.png,xml定义在/base/core/res/res/drawable/之下:

18sp

#008

@android:color/black

2.0

@android:color/black

1.0

@android:drawable/btn_default

?android:attr/textAppearanceMedium

@android:drawable/edit_text

?android:attr/textAppearanceMedium

main.xml代码如下:

android:orientation="vertical" android:layout_width="fill_parent"

android:layout_height="fill_parent">

android:layout_height="wrap_content" android:text="@string/hello"

style="@style/TextView" />

style="@style/EditText" android:layout_width="fill_parent"

android:text="类似Button的EditText">

android:layout_width="fill_parent" android:text="普通的EditText">

style="@style/Button" android:layout_width="fill_parent" android:text="类似EditText的Button">

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值