android:id @id/
@+id/ 给定id,使其能在Activity中寻找到
android:layout_width wrap_content
fill_parent
match_parent 控件宽度
android:layout_height wrap_content
fill_parent
match_parent 控件高度
续表5.1 常见XML布局的属性
属性名 值 说明
android:gravity center
center_Horizontal
center_Vertical
bottom
top
right
left 控件内容的位置
android:orientation horizontal
vertical 控件内容的方向
android:layout_gravity center
center_Horizontal
center_Vertical
bottom
top
right
left 控件的位置
其他的Android控件中,多数都有表5.1的属性,又如可以把常见的属性写入style中,方便多个控件使用。比如在本程序中,需要用到带阴影的文字,将如下代码写入res文件夹下/res/values/style.xml中,属性如表5.2所示,在此XML中用<resources>代表这一个资源文件,用<style>标签代表这是一个样式,<item>表示单个内容。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="TextShadow">
<item name="android:shadowColor">#ff000000</item>
<item name="android:shadowDx">2</item>
<item name="android:shadowDy">2</item>
<item name="android:shadowRadius">1</item>
</style>
</resources> 基于Android系统的图片浏览器开发与设计(9):http://www.youerw.com/jisuanji/lunwen_2596.html