您的位置:首页 > 移动开发 > Android开发

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

2012-08-27 06:40 525 查看
所有的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>



内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐