Ich versuche, Radiobutton-Effekt für normale Tasten in Android zu bekommen
Ich habe unten ein einfaches Android-Optionsfeld
Code dafür ist ::
activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<RadioGroup
android:id="@+id/radioGroup1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" >
<RadioButton
android:id="@+id/radio0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="RadioButton1" />
<RadioButton
android:id="@+id/radio1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton2" />
<RadioButton
android:id="@+id/radio2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton3" />
</RadioGroup>
</RelativeLayout>
So passen Sie es wie folgt an:
Danke !
[BEARBEITEN] mit Code aus einer der Antworten
Der Schaltflächenname wird jedoch von der Auswahloption überschattet, wie er entfernt werden soll.
{EDIT} weitere Änderungen
Letzte Änderungen sollten mindestens ich sollte wissen, welche Schaltfläche ich aus drei Optionsfeldern ausgewählt habe .... ist es möglich, wie unten zu erhalten?