Android編程之線性布局LinearLayout執行個體簡析_Android

來源:互聯網
上載者:User

本文執行個體講述了Android編程之線性布局LinearLayout用法。分享給大家供大家參考,具體如下:

線性布局(LinearLayout)

可以讓它的子項目垂直或水平的方式排成一行(不設定方向的時候預設按照垂直方向排列)。

下面樣本是在別人基礎上修改的main.xml:

<?xml version="1.0" encoding="utf-8"?><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:orientation="horizontal"    android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:baselineAligned="false"    android:layout_weight="1" >    <LinearLayout      android:orientation="horizontal"      android:layout_width="wrap_content"      android:layout_height="fill_parent"      android:layout_weight="1">      <TextView        android:text="@string/color_green"        android:textColor="#ff0000"        android:background="#00aa00"        android:layout_width="wrap_content"        android:layout_height="fill_parent"        android:layout_weight="1"/>      <TextView        android:text="@string/color_blue"        android:background="#0000aa"        android:layout_width="wrap_content"        android:layout_height="fill_parent"        android:layout_weight="1"/>    </LinearLayout>    <LinearLayout       android:orientation="vertical"       android:layout_width="wrap_content"       android:layout_height="fill_parent"       android:layout_weight="1">       <TextView         android:text="@string/color_black"         android:background="#000000"         android:layout_width="fill_parent"         android:layout_height="wrap_content"         android:layout_weight="1"/>       <TextView         android:text="@string/color_yellow"         android:background="#aaaa00"         android:layout_width="fill_parent"         android:layout_height="wrap_content"         android:layout_weight="1"/>       <TextView         android:text="@string/color_unknown"         android:background="#00aaaa"         android:layout_width="fill_parent"         android:layout_height="wrap_content"         android:layout_weight="1"/>     </LinearLayout>  </LinearLayout>  <LinearLayout    android:orientation="vertical"    android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:layout_weight="2">    <TextView      android:text="@string/color_red"      android:gravity="fill_vertical"      android:background="#aa0000"      android:layout_width="fill_parent"      android:layout_height="wrap_content"      android:layout_weight="2"/>    <TextView      android:text="@string/color_white"      android:textColor="#ff0000"      android:background="#ffffff"      android:layout_width="fill_parent"      android:layout_height="wrap_content"      android:layout_weight="2"/>  </LinearLayout></LinearLayout>

string.xml

<?xml version="1.0" encoding="utf-8"?><resources>  <string name="hello">Hello World, TestAbsoluteLayoutActivity!</string>  <string name="app_name">TestAbsoluteLayout</string>  <string name= "color_red">red</string>  <string name= "color_green">green</string>  <string name= "color_blue">blue</string>  <string name= "color_white">white</string>  <string name= "color_black">black</string>  <string name= "color_yellow">yellow</string>  <string name= "color_unknown">unknown</string></resources>

效果圖如下:

常用的屬性:

android:orientation:可以設定布局的方向
android:gravity:用來控制組件的對齊
layout_weight:控制各個組件在布局中的相對大小

更多關於Android編程布局相關內容可查看本站專題:《Android布局layout技巧總結》

希望本文所述對大家Android程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.