我有这个布局:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TableLayout android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:stretchColumns="*" android:background="#00ff00">
<TableRow android:layout_margin="1dip">
<TextView android:text="col 1" android:background="#0000ff" android:layout_margin="1dip"/>
<TextView android:text="col 2" android:background="#0000ff" android:layout_margin="1dip"/>
<TextView android:text="col 3" android:background="#0000ff" android:layout_margin="1dip"/>
<TextView android:text="col 4 with more text" android:background="#0000ff" android:layout_margin="1dip"/>
</TableRow>
<TableRow android:layout_margin="1dip" >
<TextView android:layout_height="fill_parent" android:text="text" android:background="#0000ff" android:layout_margin="1dip"/>
<TextView android:layout_height="fill_parent" android:text="text" android:background="#0000ff" android:layout_margin="1dip"/>
<RadioButton android:background="#0000ff" android:id="@+id/radioButton1" android:layout_gravity="center" ></RadioButton>
<RadioButton android:id="@+id/radioButton2" android:layout_gravity="center" >
</RadioButton>
</TableRow>
</TableLayout>
</ScrollView>
不显示带有ID radioButton1的单选按钮。 如果我删除它的背景颜色然后它显示。 如果我保留背景颜色并删除它显示的layout_gravity。
有人知道我做错了吗?
答案 0 :(得分:1)
RadioButton
的背景是一个9patch,它会在标签旁边留下单选按钮图像的空间,这样可能会搞乱一切。如果你想设置背景颜色,我认为你必须修改原始的9patch图像(见here)。