Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android入門之LinearLayout、AbsoluteLayout的用法實例講解

Android入門之LinearLayout、AbsoluteLayout的用法實例講解

編輯:關於Android編程

本文實例介紹了Android中LinearLayout、AbsoluteLayout的用法,希望能對於初學Android的朋友起到一點幫助作用。具體內容如下:

Android 的UI 布局都以Layout 作為容器,並且在上面按照規定排列控件,這方面跟JAVA 的Swing 和LWUIT 很像。控件跟Layout 有很多屬性是一樣的,可以在Properties 裡面修改,跟.NET/Delphi 等RAD 類似,其中最常用的屬性有以下這些:

id="@+id/edtInput",ID 是連接UI 與代碼的橋梁

Gravity= "center" ,Layout 中的控件居中

layout_width="fill_parent" ,自動填充至屏幕寬度,layout_height 同理

layout_width="wrap_content" ,自動填充為控件大小,layout_height 同理

LinearLayout ,在Android入門實例一篇所用的Layout 就是LinearLayout ,它的理解很簡單:在LinearLayout 裡面的控件,按照水平或者垂直排列:
orientation="horizontal" :水平排列;orientation=" vertical" :垂直排列
當LinearLayout 是horizontal ,並且裡面的控件使用了layout_width="fill_parent" ,第二組控件會擋在屏幕的右邊,那也就是看不到了。

AbsoluteLayout ,是一個按照絕對坐標定義的布局,由於使用絕對坐標去定位控件,因此要實現自適應界面時,應盡少使用 AbsoluteLayout 。 AbsoluteLayout 裡面的控件都以layout_x 、layout_y 來定義其位置:

 

上圖中的TextView01的X坐標為10px,Y坐標為10px,頁面布局代碼如下:

<AbsoluteLayout android:id="@+id/AbsoluteLayout01" android:layout_height="wrap_content" android:layout_width="fill_parent" > 
<TextView android:text="TextView01" android:id="@+id/TextView01" android:layout_height="wrap_content" android:layout_y="10px" android:layout_width="wrap_content" android:layout_x="110px"> 
</TextView> 
</AbsoluteLayout>
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved