在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单选框基本应用方式
  2. AS Layout布局
  3. 平时积累(四)
  4. Android(安卓)如何在XML文件中定义动画
  5. Android(安卓)资源文件中的符号含义与说明: @ ?
  6. android scaleType的属性
  7. android之layout布局和ListView中的一些属性介绍
  8. Android属性之build.prop生成过程
  9. Android(安卓)RelativeLayout(相对布局)简介

随机推荐

  1. android 参数 加密,解密 参数提交,数据返回
  2. Android 简单的从本机获取相机功能 并且
  3. 第一个Android登录页面 | HTTP 请求验证
  4. android的xml控件遇到的问题(1)
  5. Android 解决阿里云直播水印问题
  6. android 改变bitmap颜色
  7. android中ListView数据刷新时的同步
  8. Android 使用ContentObserver监听短信的
  9. Android改变系统自带ProgressDialog的文
  10. Android 实现手机震动功能