Welcome 微信登录

首页 / 操作系统 / Linux / Android应用开发之LinearLayout(线性布局)

“ LinearLayout ”翻译成中文是“线性布局”,所谓线性布局就是在该标签下的所有子元素会根据其 orientation 属性的值来决定是按行或者是按列逐个显示。示例main.xml布局文件如下:
  1. <?xml version="1.0"encoding ="utf-8"?>  
  2. <LinearLayout  
  3. xmlns:Android "http://schemas.android.com/apk/res/android"  
  4. android:orientation"vertical"  
  5. android:layout_width"fill_parent"  
  6. android:layout_height"fill_parent"  
  7. >   
  8. <TextView  
  9. android:layout_width"fill_parent"  
  10. android:layout_height"wrap_content"  
  11. android:text ="@string/name_text"  
  12. />  
  13. < EditText  
  14. android:layout_width"fill_parent"  
  15. android:layout_height"wrap_content" />  
  16. < Button  
  17. android:layout_width"wrap_content"  
  18. android:layout_height"wrap_content"  
  19. android:text ="@string/cancle_button"  
  20. />  
  21. < Button  
  22. android:layout_width"wrap_content"  
  23. android:layout_height"wrap_content"  
  24. android:text ="@string/ok_button" />  
  25. </LinearLayout >  
其对应 strings.xml 内容如下:
  1. <?xml version="1.0"encoding = "utf-8" ?>  
  2. < resources>  
  3. < string name"hello" > Hello World, UIActivity! </ string >  
  4. < string name"app_name" > 用户界面 </ string >  
  5. < string name"name_text" > 请输入用户名 </ string >  
  6. < string name"ok_button" > 确定 </ string >  
  7. < string name"cancle_button" > 取消 </ string >  
  8. </ resources>  
运行后,如下图:
“ xmlns:android ”指定命名空间,顶级元素必须指定命名空间。而在该命名空间中的控件的属性如 layout_width ,要在属性前加上“android :”做前缀??“ layout_width ”指定该元素的宽度,可选值有三种,“ fill_parent ”、“ wrap_content ”、具体数字(单位为 px )。其中“ fill_parent ”代表填满其父元素,对于顶级元素来说,其父元素就是整个手机屏幕。“ wrap_content ”代表该元素的大小仅包裹其自身内容,而数字则代表其占相应的 px 。“ layout_height ”指定该元素的高度,可选参数值与“ layout_width ”的参数意义相同。“ orientation ”指定子元素排列方式,其中指定为“ vertical ”则是子元素垂直排列,每个子元素会占独立的一行,如上图,而另一个可选值为“ horizontal ”代表子元素水平排列,即每个子元素会占独立的一列。示例 main.xml 布局文件如下。其对应的