当前位置:操作系统 > 安卓/Android >>

Android ApiDemos示例解析(142):Views->Layouts->LinearLayout->2. Vertical (Fill Screen)

所有的ViewGroup(Layout类的基类)都包含width 和height 属性(layout_width 和layout_height),所有的View都必须定义这两个值。

layout_width 和layout_height 允许使用绝对值来定义(如像素值),当为了使UI能够自适应屏幕大小,一般不使用绝对值来定义View的宽度和高度。可以使用如下两个常量:

wrap_content:  告诉View使用能包含其内容的尺寸 (类似于WinForm 中AutoSize)。
fill_parent(或match_parent 从Level 8起): 子View扩展为其父容器尺寸。
本例和上例的不同之处在于本例为LinearLayout设置了match_parent ,因此此LinearLayout将充满屏幕:

<LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”
android:orientation=”vertical”
android:background=”@drawable/blue”
android:layout_width=”match_parent”
android:layout_height=”match_parent”>

<!– view1 goes on top –>
<TextView
android:background=”@drawable/box”
android:layout_width=”match_parent”
android:layout_height=”wrap_content”
android:text=”@string/linear_layout_2_top”/>

<!– view2 goes in the middle –>
<TextView
android:background=”@drawable/box”
android:layout_width=”match_parent”
android:layout_height=”wrap_content”
android:text=”@string/linear_layout_2_middle”/>

<!– view3 goes on the bottom –>
<TextView
android:background=”@drawable/box”
android:layout_width=”match_parent”
android:layout_height=”wrap_content”
android:text=”@string/linear_layout_2_bottom”/>

</LinearLayout>

 \

补充:移动开发 , Android ,
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,