Android布局管理之LinearLayout

来源:互联网 发布:iface302 指纹算法 编辑:程序博客网 时间:2024/06/03 18:07

线性布局

      线性布局是将放入其中的组件按照垂直或水平方向来布局,也就是控制放入其中的组件横向排列或纵向排列。在线性布局中,每一行(针对垂直排列)或每一列(针对水平排列)中只能放一个组件。并且Android的线性布局不会换行,当组件一个挨着一个排列到窗体的边缘后,剩下的组件将不会被显示出来。

       在Android中,可以在XML布局文件中定义线性布局管理器,也可以使用Java代码来创建。推荐使用在XML布局文件中定义线性布局管理器。在XML布局文件中定义线性布局管理器,需要使用<LinearLayout>标记,其基本的语法格式如下:


<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"    属性列表></LinearLayout>


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:orientation="vertical" >    <Button        android:id="@+id/btn1"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:text="button1" />    <Button        android:id="@+id/btn2"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:text="button2" />    <Button        android:id="@+id/btn3"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:text="button3" />    <Button        android:id="@+id/btn4"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:text="button4" /></LinearLayout>



android:gravity规定了子元素的排列方式

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:gravity="center"    android:orientation="vertical" >    <Button        android:id="@+id/btn1"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:gravity="left"        android:text="button1" />    <Button        android:id="@+id/btn2"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:gravity="right"        android:text="button2" />    <Button        android:id="@+id/btn3"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:gravity="center"        android:text="button3" />    <Button        android:id="@+id/btn4"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:gravity="center_vertical"        android:text="button4" />    <Button        android:id="@+id/btn5"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_gravity="right"        android:text="button5" />    <Button        android:id="@+id/btn6"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_gravity="center"        android:text="button6" />    <Button        android:id="@+id/btn7"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_gravity="center"        android:gravity="bottom"        android:text="button7" /></LinearLayout>




android:gravity用于设置View中内容相对于View组件的对齐方式,而android:layout_gravity用于设置View组件相对于Container的对齐方式。


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:orientation="vertical" >    <LinearLayout        android:layout_width="fill_parent"        android:layout_height="fill_parent"        android:layout_weight="1"        android:orientation="horizontal" >        <TextView            android:layout_width="wrap_content"            android:layout_height="fill_parent"            android:layout_weight="1"            android:background="#FF0000"            android:text="text1" />        <TextView            android:layout_width="wrap_content"            android:layout_height="fill_parent"            android:layout_weight="1"            android:background="#FFFF00"            android:text="text2" />        <TextView            android:layout_width="wrap_content"            android:layout_height="fill_parent"            android:layout_weight="1"            android:background="#0000FF"            android:text="text3" />    </LinearLayout>    <LinearLayout        android:layout_width="fill_parent"        android:layout_height="fill_parent"        android:layout_weight="1"        android:orientation="vertical" >        <TextView            android:layout_width="fill_parent"            android:layout_height="wrap_content"            android:layout_weight="1"            android:background="#00FF00"            android:text="text4" />        <TextView            android:layout_width="fill_parent"            android:layout_height="wrap_content"            android:layout_weight="1"            android:background="#00FFFF"            android:text="text5" />        <TextView            android:layout_width="fill_parent"            android:layout_height="wrap_content"            android:layout_weight="1"            android:background="#0F0F0F"            android:text="text6" />    </LinearLayout></LinearLayout>



帧布局

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent" >    <TextView        android:layout_width="200dp"        android:layout_height="200dp"        android:layout_gravity="center|top"        android:background="#00FF00" />    <TextView        android:layout_width="100dp"        android:layout_height="300dp"        android:layout_gravity="center|bottom"        android:background="#FF0000" /></FrameLayout>



0 0