2012-09-30 132 views

回答

1

我會用一個垂直的LinearLayout一分爲二。

事情是這樣的:

<?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:paddingLeft="16dp" 
    android:paddingRight="16dp" 
    android:orientation="vertical" > 
     <Button 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:layout_gravity="right" 
       android:text="PlayingArea" /> 
     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:paddingLeft="16dp" 
      android:paddingRight="16dp" 
      android:orientation="horizontal" > 
       <Button 
        android:layout_width="100dp" 
        android:layout_height="wrap_content" 
        android:layout_gravity="right" 
        android:text="left_lower_box" /> 
       <Button 
        android:layout_width="100dp" 
        android:layout_height="wrap_content" 
        android:layout_gravity="right" 
        android:text="right_lower_box" /> 
      </LinearLayout> 
</LinearLayout> 

這僅僅是一個樣品;你可能不會爲你的應用使用按鈕,你需要設置高度和寬度。

1

我建議你使用LinearLayout和方向垂直,它分爲兩個部分,一個用於彈跳,另一個用於設計分數佈局。 比分佈局可以再設計一個linearLayout,方向horizantal