Hallo Leute,
bab eine Radiogroup mit 6 radiobuttons. Von der anordnung her sieht das so aus:
Radiogroup
|radioBtn0|radioBtn1|radioBtn2
|radioBtn4|radioBtn5|radioBtn6
eigentlich sollte ja nur wenn man die radiogroup bei default lässt, also spirch nichts großartiges daran ändert, nur eines der radiobuttons wählbar sein (zumindestens kenn ich das so, dass pro group nur ein button ausgewählt werden kann, bin mir aber nicht 100%ig sicher )
das problem in meinem fall ist, dass alle ausgewählt werden können. kann es daran liegen, das ich die die in linearlayouts aufgeteilt habe!? falls nicht, wie kann man das sonst umgehen, dass quasi nur eines der 6 radiobuttons ausgewählt werden kann?
hier die xml:
Code
<RadioGroup
android:id="@+id/radioGroup1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/textView2"
android:layout_marginTop="5dp"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" >
<RadioButton
android:id="@+id/radio0"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="USD" />
<RadioButton
android:id="@+id/radio1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="EUR" />
<RadioButton
android:id="@+id/radio2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="GBP" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<RadioButton
android:id="@+id/radio4"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="CHF" />
<RadioButton
android:id="@+id/radio5"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="JPY" />
<RadioButton
android:id="@+id/radio6"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="TRY" />
</LinearLayout>
</RadioGroup>
Alles anzeigen
danke euch für eure bemühungen im voraus