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在表格佈局內完全可見?
你可能想改變機器人的'值:該行的padding',那是什麼限制了空間TextView的。或者,只需更改字體大小。 – chinglun