在Android中,常见的布局控件包括LinearLayout(线性布局)、RelativeLayout(相对布局)、TableLayout(网格布局)、FrameLayout(帧布局)、AbsoluteLayout(绝对布局)等,其中最常用的是:LinearLayout(线性布局)、RelativeLayout(相对布局)。

LinearLayout布局是Android中应用最广泛的,也是最基础的一种布局文件。LinearLayout布局可以使放入其中的组件以水平方式或者垂直的方式整齐排列,LinearLayout的继承关系如下:

java.lang.Object
android.view.View
android.view.ViewGroup
android.widget.LinearLayout
属性:android:layout_width属性定义了控件的宽度;android:layout_height属性定义了控件的高度,anroid:layout_weight:属性设置了每个组件在布局中所占的比重(权重),android:orientation属性指定具体的排列方式。android:orientation的属性值为horizontal表示组件以水平方式排列,android:orientation的属性值为vertical表示组件以垂直方式排列。下面使用LineraLayout布局例子如下:

main.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"
android:background="#aaaaaa"

>
<!-- 顶部 -->
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
>


<Button
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#00ff00"
android:text="微信"
android:textColor="#ffffff"
android:textSize="26sp" />

<Button
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#ff00ff"
android:text="支付宝"
android:textColor="#ffffff"
android:textSize="26sp" />


</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal" >


<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="1"
>


<Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ff0000"
android:gravity="center"
android:text="淘宝"
android:textColor="#ffffff"
android:textSize="26sp" />


</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
>


<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
>
<Button
android:id="@+id/button4"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#00BFFF"
android:text="钉钉"
android:textSize="20sp"
android:textColor="#ffffff"
/>

<Button
android:id="@+id/button5"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#DC143C"
android:text="QQ"
android:textSize="20sp"
android:textColor="#ffffff"
/>
</LinearLayout>

<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"

>
<Button
android:id="@+id/button6"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#FFD700"
android:text="UC浏览器"
android:textColor="#ffffff"
android:textSize="20sp"
/>

<Button
android:id="@+id/button7"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#7FFF00"
android:text="微博"
android:textColor="#ffffff"
android:textSize="20sp"
/>
</LinearLayout>

</LinearLayout>





</LinearLayout>

<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
>


<Button
android:id="@+id/button8"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#ff4500"
android:text="百度"
android:textColor="#ffffff"
android:textSize="26sp" />

<Button
android:id="@+id/button9"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#00ffff"
android:text="京东"
android:textColor="#ffffff"
android:textSize="26sp" />


</LinearLayout>

</LinearLayout>

运行效果如下:


最后说几句:LinearLayout布局可使用嵌套。活用LinearLayout布局,可以设计出各种各样漂亮的布局方式。


更多相关文章

  1. android之ListView布局
  2. Android属性之build.prop生成过程
  3. Android移动应用开发_基础页面布局总结
  4. Android RelativeLayout(相对布局)简介
  5. listView 中relativeLayout 布局的 android:layout_alignParentB
  6. EditText 的常用属性与解释
  7. android 界面布局
  8. 51. (android开发)线性布局、相对布局、帧布局

随机推荐

  1. Android(安卓)Webkit中DocumentWriter模
  2. 由浅入深全面剖析ThreadLocal
  3. Android应用编程--基本概念
  4. Android蓝牙开发(三):操作步骤
  5. Android(安卓)recovery支持adb shell
  6. ubuntu 12.04 下载 Android(安卓)4.4 源
  7. Android系统移植与调试之------->如何修
  8. cocos2dx 遮罩层 android 手机上 失败
  9. Android中ListView滚动时上下的那一抹色
  10. android 电话拨号器