安卓UI四种基本布局-线性布局

1》线性布局(LinerLayout)

所有的空间在线性上依次排序

android:orientation="vertical"(纵向布局)

安卓UI四种基本布局-线性布局_第1张图片

 

android:orientation="horizontal"(横向布局)

安卓UI四种基本布局-线性布局_第2张图片

即使控件在这一行放不下也不会跳转到下一行

layout_weight可以更好地安排空间的大小和分布比例

<EditText
android:id="@+id/e1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="type something"
/>
<Button
android:id="@+id/b1"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="send"/>

 

转载于:https://www.cnblogs.com/837634902why/p/10306942.html

你可能感兴趣的:(安卓UI四种基本布局-线性布局)