1
我想要的佈局是屏幕大兩行三列如何在xml中做這樣的佈局? Android的
這樣的圖像=> http://dl.dropbox.com/u/2024237/Bildschirmfoto-DroidDraw.png
的顏色應該是按鈕...
請幫助。 ...我不知道它
我想要的佈局是屏幕大兩行三列如何在xml中做這樣的佈局? Android的
這樣的圖像=> http://dl.dropbox.com/u/2024237/Bildschirmfoto-DroidDraw.png
的顏色應該是按鈕...
請幫助。 ...我不知道它
使用LinearLayouts並設置孩子fill_parent的寬度和高度,並指定他們相同的layout_weight你會得到所需的效果:
<?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_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:text="Button 1"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"></Button>
<Button
android:text="Button 2"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"></Button>
<Button
android:text="Button 3"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"></Button>
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:text="Button 4"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"></Button>
<Button
android:text="Button 5"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"></Button>
<Button
android:text="Button 6"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"></Button>
</LinearLayout>
</LinearLayout>
真棒謝謝你=) – 2010-07-25 20:43:30