linear_layout

来源:互联网 发布:耽美剧最全的软件 编辑:程序博客网 时间:2024/06/09 15:35

线性布局


linear_layout.xml

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical" >    <LinearLayout         android:layout_width="match_parent"        android:layout_height="wrap_content"        android:orientation="horizontal">    <!--     android:orientation="vertical" 设置容器中元素的排列方向(vertical,horizontal)    android:layout_width="wrap_content" 元素在容器中占据的宽度        android:layout_height="wrap_content" 元素在容器中占据的高度        android:text 控件的文本值        android:layout_weight 设置元素在父容器中所占的比重     -->    <Button         android:layout_width="0dp"        android:layout_height="wrap_content"        android:layout_weight="1"        android:text="按钮1"/>    <Button         android:layout_width="0dp"        android:layout_height="wrap_content"        android:layout_weight="1"        android:text="按钮2"/>    <Button         android:layout_width="0dp"        android:layout_height="wrap_content"        android:layout_weight="1"        android:text="按钮3"/>    <Button         android:layout_width="0dp"        android:layout_height="wrap_content"        android:layout_weight="1"        android:text="按钮4"/>    </LinearLayout>    <LinearLayout         android:layout_width="match_parent"        android:layout_height="match_parent"        android:orientation="vertical">    <Button         android:layout_width="match_parent"        android:layout_height="0dp"        android:layout_weight="1"        android:text="按钮1"/>    <Button         android:layout_width="match_parent"        android:layout_height="0dp"        android:layout_weight="1"        android:text="按钮2"/>    <Button         android:layout_width="match_parent"        android:layout_height="0dp"        android:layout_weight="1"        android:text="按钮3"/>    <Button         android:layout_width="match_parent"        android:layout_height="0dp"        android:layout_weight="1"        android:text="按钮4"/>    </LinearLayout></LinearLayout>

0 0