Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> Android開發GUI容器簡單布局

Android開發GUI容器簡單布局

編輯:關於android開發

  android 中有三個經常使用的容器:LinearLayout、RelativeLayout、TableLayout。下面分別簡單的介紹一下每個容器。

  1、LinearLayout 組件或子容器水平或垂直線性排列。有5個基本屬性:
 a、android:orientation 值為horizontal時為水平的,值為vertical 時為垂直的。
 b、LinearLayout裡面的組件都有android:layout_width和android:layout_height 屬性。
 c、android:layout_weight控制組件的比例。
 d、android:layout_gravity 控制組建的初始順序。
 e、padding 邊緣。

  LinearLayout簡單的xml文件為:

  <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<RadioGroup
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5px">
<RadioButton
android:text="RadioButton1" />
<RadioButton
android:text="RadioButton2" />
</RadioGroup>
<RadioGroup
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5px">
<RadioButton
android:text="RadioButton1" />
<RadioButton
android:text="RadioButton2" />
<RadioButton
android:text="RadioButton3" />
</RadioGroup>
</LinearLayout>

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved