本文来自http://blog.csdn.net/hellogv/ ,引用必须注明出处!
越来越多互联网企业都在Android平台上部署其客户端,为了提升用户体验,这些客户端都做得布局合理而且美观.......Android的Style设计就是提升用户体验的关键之一。Android上的Style分为了两个方面:
Theme是针对窗体级别的,改变窗体样式;
Style是针对窗体元素级别的,改变指定控件或者Layout的样式。
Android系统的themes.xml和style.xml(位于/base/core/res/res/values/)包含了很多系统定义好的style,建议在里面挑个合适的,然后再继承修改。以下属性是在Themes中比较常见的,源自Android系统本身的themes.xml:
-
- <item name="windowBackground">@android:drawable/screen_background_darkitem>
- <item name="windowFrame">@nullitem>
- <item name="windowNoTitle">falseitem>
- <item name="windowFullscreen">falseitem>
- <item name="windowIsFloating">falseitem>
- <item name="windowContentOverlay">@android:drawable/title_bar_shadowitem>
- <item name="windowTitleStyle">@android:style/WindowTitleitem>
- <item name="windowTitleSize">25dipitem>
- <item name="windowTitleBackgroundStyle">@android:style/WindowTitleBackgrounditem>
- <item name="android:windowAnimationStyle">@android:style/Animation.Activityitem>
至于控件的Style设计就范围大多了,看看Eclipse的Android控件属性编辑器[Properties]就大概知道有哪些条目,而Android内置的style.xml也只是定义每个控件的默认样式而已....不过控件的style不建议大改,耐看的style更能让用户长时间使用软件。另外,控件的Style在很多情况下都用到9.png,学习9.png就必须到/base/core/res/res/drawable-hdpi里面看看,里面有很多系统内置的9.png。
PS:为了研究Android的Style和Theme,强烈建议下载Android的base.git!
接下来看看本文程序的效果图:
本文程序的themes.xml代码如下,自定义了WindowTitle,:
要为Activity使用theme,要么使用代码 setTheme(R.style.Theme),要么在Application Manifest里面设置。
本文程序的styles.xml代码如下,background默认使用的是9.png,xml定义在/base/core/res/res/drawable/之下:
main.xml代码如下:
- xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android=""
- android:orientation="vertical" android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <TextView android:layout_width="fill_parent"
- android:layout_height="wrap_content" android:text="@string/hello"
- style="@style/TextView" />
- <EditText android:id="@+id/EditText01" android:layout_height="wrap_content"
- style="@style/EditText" android:layout_width="fill_parent"
- android:text="类似Button的EditText">EditText>
- <EditText android:id="@+id/EditText02" android:layout_height="wrap_content"
- android:layout_width="fill_parent" android:text="普通的EditText">EditText>
- <Button android:id="@+id/Button01" android:layout_height="wrap_content"
- style="@style/Button" android:layout_width="fill_parent" android:text="类似EditText的Button">Button>
- LinearLayout>
阅读(1022) | 评论(0) | 转发(0) |