Android布局之Linearyout(线性)布局

所谓线性布局就是在该标签下的所有子元素会根据其orientation属性的值来决定是按行或者是按列逐个显示。

下面用代码实现以下

在sting.xml中的内容



Hello World, UIActivity!
用户界面
请输入用户名
确定
取消

在main.xml中的代码

xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/name_text"
/>
android:layout_width="fill_parent"
android:layout_height="wrap_content" />

android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/cancle_button"
/>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/ok_button"/>

实现效果:




你可能感兴趣的:(Android布局之Linearyout(线性)布局)