<TableRow >
<RadioGroup
android:id="@+id/radioGroupContacts"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/radioAllContacts"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="To Anybody in my Contact List" />
<RadioButton
android:id="@+id/radioSelectedContacts"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Only to Selected People in my Contact List" />
<Button
android:id="@+id/buttonOpenContactList"
android:text="Open Contact List" />
</RadioGroup>
</TableRow>
Это выглядит просто отлично, но не кажется правильным - разве все в RadioGroup не должно быть RadioButton?
Если я переместил кнопку за пределы RadioGroup, но все еще внутри TableRow, она, конечно, будет работать нормально.