2013-08-02 75 views
0

在我的應用程序中,我有一個包含四個單選按鈕的radiogroup的對話框。我的問題是,它在仿真器中看起來不錯,但是當我在手機中安裝並運行我的應用程序時,單選按鈕在它們中的每一個之間會獲得更多空間。這使得radiogroup伸展在我的Dialog之外。 請幫我這個。 謝謝。如何減少android中的radiogroup中的單選按鈕之間的空間?

<RadioGroup 
     android:id="@+id/radio_RemindAtDlg" 
     android:layout_width="wrap_content" 
     android:layout_height="130dp" 
     android:layout_marginTop="110dp" 
     android:layout_marginLeft="20dp" > 

     <RadioButton 
      android:id="@+id/radio_OnceDlg" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="Once" 
      android:button="@drawable/radio_button" 
      android:textSize="12dp" /> 

     <RadioButton 
      android:id="@+id/radio_WeekDlg" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="Every Week" 
      android:button="@drawable/radio_button" 
      android:textSize="12dp" /> 

     <RadioButton 
      android:id="@+id/radio_MonthDlg" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="Every Month" 
      android:button="@drawable/radio_button" 
      android:textSize="12dp" /> 

     <RadioButton 
      android:id="@+id/radio_YearDlg" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="Every Year" 
      android:button="@drawable/radio_button" 
      android:textSize="12dp" /> 

    </RadioGroup> 
+0

我們可以看到您的代碼的相關部分? – 2013-08-02 13:03:37

+0

那裏我有我的radiogroup代碼 –

回答

0

沒有代碼很難說,但我估計你已經在XML height屬性設置爲fill_parent,而不是wrap_content

+0

我用我的代碼編輯我的問題現在 –

+0

你有高度設置爲固定大小改變它來包裝內容 – Cob50nm

相關問題