2013-11-22 56 views
0
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" > 

    <TableRow 
     android:id="@+id/tableRow1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:padding="17dp" 
     > 

     <TextView 
      android:id="@+id/textView1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="I like to go out more\n than staying home." /> 

     <RadioButton 
      android:id="@+id/radioButton1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="True" /> 

     <RadioButton 
      android:id="@+id/radioButton2" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="False" /> 

    </TableRow> 

</TableLayout> 

我的textview裏面的textview似乎是有限的,並在底部被切斷。我可以更改哪些屬性以使其完全可見?如何使我的textview在表格佈局內完全可見?

+0

你可能想改變機器人的'值:該行的padding',那是什麼限制了空間TextView的。或者,只需更改字體大小。 – chinglun

回答

0

經過一番實驗,將RadioButton s包裝在RadioGroup中似乎對現在有幫助。

試試這個:

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 
    <TableRow 
     android:id="@+id/tableRow1" 
     android:padding="17dp" > 
     <TextView 
      android:id="@+id/textView1" 
      android:text="I like to go out more\nthan staying home." /> 
     <RadioGroup android:orientation="horizontal" > 
      <RadioButton 
       android:id="@+id/radioButton1" 
       android:text="True" /> 
      <RadioButton 
       android:id="@+id/radioButton2" 
       android:text="False" /> 
     </RadioGroup> 
    </TableRow> 
</TableLayout> 
相關問題