越来越多互联网企业都在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:

view plain copy to clipboard print ?
  1. <!--Windowattributes-->
  2. < item name = "windowBackground" > @android:drawable/screen_background_dark </ item >
  3. < item name = "windowFrame" > @null </ item >
  4. < item name = "windowNoTitle" > false </ item >
  5. < item name = "windowFullscreen" > false </ item >
  6. < item name = "windowIsFloating" > false </ item >
  7. < item name = "windowContentOverlay" > @android:drawable/title_bar_shadow </ item >
  8. < item name = "windowTitleStyle" > @android:style/WindowTitle </ item >
  9. < item name = "windowTitleSize" > 25dip </ item >
  10. < item name = "windowTitleBackgroundStyle" > @android:style/WindowTitleBackground </ item >
  11. < item name = "android:windowAnimationStyle" > @android:style/Animation.Activity </ item >

至于控件的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,:

<?xml version="1.0" encoding="UTF-8"?>
<resources>
<!--继承Android内置的Theme.Light,位于\base\core\res\res\values\themes.xml -->
<style name="Theme" parent="android:Theme.Light">
<item name="android:windowFullscreen">true</item>
<item name="android:windowTitleSize">60dip</item>
<item name="android:windowTitleStyle">@style/WindowTitle</item>
</style>

<style name="WindowTitle" parent="android:WindowTitle">
<item name="android:singleLine">true</item>
<item name="android:shadowColor">#BB000000</item>
<item name="android:shadowRadius">2.75</item>
</style>
</resources>

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

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

<?xml version="1.0" encoding="UTF-8"?>
<resources>
<style name="TextView">
<item name="android:textSize">18sp</item>
<item name="android:textColor">#008</item>
<item name="android:shadowColor">@android:color/black</item>
<item name="android:shadowRadius">2.0</item>
</style>

<style name="EditText">
<item name="android:shadowColor">@android:color/black</item>
<item name="android:shadowRadius">1.0</item>
<item name="android:background">@android:drawable/btn_default</item>
<item name="android:textAppearance">?android:attr/textAppearanceMedium</item>
</style>

<style name="Button">
<item name="android:background">@android:drawable/edit_text</item>
<item name="android:textAppearance">?android:attr/textAppearanceMedium</item>
</style>
</resources>

main.xml代码如下:

view plain copy to clipboard print ?
  1. <? xml version = "1.0" encoding = "utf-8" ?>
  2. < LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android"
  3. android:orientation = "vertical" android:layout_width = "fill_parent"
  4. android:layout_height = "fill_parent" >
  5. < TextView android:layout_width = "fill_parent"
  6. android:layout_height = "wrap_content" android:text = "@string/hello"
  7. style = "@style/TextView" />
  8. < EditText android:id = "@+id/EditText01" android:layout_height = "wrap_content"
  9. style = "@style/EditText" android:layout_width = "fill_parent"
  10. android:text = "类似Button的EditText" > </ EditText >
  11. < EditText android:id = "@+id/EditText02" android:layout_height = "wrap_content"
  12. android:layout_width = "fill_parent" android:text = "普通的EditText" > </ EditText >
  13. < Button android:id = "@+id/Button01" android:layout_height = "wrap_content"
  14. style = "@style/Button" android:layout_width = "fill_parent" android:text = "类似EditText的Button" > </ Button >
  15. </ LinearLayout >

更多相关文章

  1. android EditText设置不可写
  2. 三、安卓UI学习(1)
  3. android 使用html5作布局文件: webview跟javascript交互
  4. android studio调试c/c++代码
  5. android用户界面之按钮(Button)教程实例汇
  6. IM-A820L限制GSM,WCDMA上网的原理(其他泛泰机型可参考)7.13
  7. 锁屏界面
  8. android(NDK+JNI)---Eclipse+CDT+gdb调试android ndk程序
  9. 在Fragment中设置控件点击方法,执行失败。

随机推荐

  1. Android(安卓)apk 安装到sd卡
  2. 转:RTC搭建android下三层应用程序访问服务
  3. 一种粗暴快速的 Android(安卓)全屏幕适配
  4. Android(安卓)判断应用 第一次安装启动
  5. android线程池原理和实现
  6. android之Android类装载器DexClassLoader
  7. 转:android ro.debuggable属性调试修改(mp
  8. android
  9. react-native 之与"android原生模块"交互
  10. Android(安卓)开发模式:mvp+retrofit2+rxj