2011-05-10 33 views
0

是否有任何xml的示例,其中包含四個按鈕(連續兩個)和其下的文本?4個按鈕及其下的文本的佈局示例

這樣的事情,但少些按鈕。 enter image description here

+0

你想爲它的佈局文件? – 2011-05-10 12:47:44

+0

模型圖像可以幫助我們理解你的目標是什麼。 – rekaszeru 2011-05-10 12:54:14

+0

是的,我需要佈局 – Eugene 2011-05-10 12:54:29

回答

1

嘗試編輯此!在2個mintues使它哈哈得走了〜好運氣和CYA

<LinearLayout 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:orientation="horizontal"> 
    <Button 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_weight="1" 
    android:text="Button 1"> 
    </Button> 
    <Button 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_weight="1" 
    android:text="Button 2"> 
    </Button> 
    </LinearLayout> 
    <LinearLayout 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:orientation="horizontal"> 
    <Button 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_weight="1" 
    android:text="Button 3"> 
    </Button> 
    <Button 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_weight="1" 
    android:text="Button 4"> 
    </Button> 
    </LinearLayout> 
    <EditText 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="I love some text here!" 
    ></EditText> 
</LinearLayout> 
相關問題