お世話になっております。
Androidアプリのレイアウトについて質問させて頂きます。
現在Kotlinでアプリを開発しているのですが、ラジオボタンを以下のように配置したく思っています。
①|②||
|:--|:--||
|③|||
通常のボタンであれば以下のようなコードで実装出来たのですが、ラジオボタンは <RadioGroup>で囲う必要が
あったため通常のボタンのようなコードで実現できず困っております。
xml
1<LinearLayout 2 android:layout_width="match_parent" 3 android:layout_height="wrap_content" 4 android:orientation="horizontal"> 5 <Button 6 android:layout_width="match_parent" 7 android:layout_height="70dp" 8 android:layout_weight="1" 9 style="@style/tertiaryButton" 10 android:text="hoge1"/> 11 <Button 12 android:layout_width="match_parent" 13 android:layout_height="70dp" 14 android:layout_weight="1" 15 style="@style/tertiaryButton" 16 android:text="hoge2"/> 17 </LinearLayout> 18 19 <LinearLayout 20 android:layout_width="match_parent" 21 android:layout_height="wrap_content" 22 android:orientation="horizontal"> 23 <Button 24 android:layout_width="match_parent" 25 android:layout_height="70dp" 26 android:layout_weight="1" 27 style="@style/tertiaryButton" 28 android:text="hoge3"/> 29 <Button 30 android:layout_width="match_parent" 31 android:layout_height="70dp" 32 android:layout_weight="1" 33 style="@style/tertiaryButton" 34 android:text="hoge4"/> 35 </LinearLayout>
現在以下のコードで、図のように配置されております。
① | ② | ③ |
---|---|---|
これを何とか以下のような配置にしたいです。
①|②||
|:--|:--||
|③|||
xml
1<RadioGroup 2 android:layout_height="wrap_content" 3 android:layout_width="wrap_content" 4 android:id="@+id/Group" 5 android:orientation="horizontal"> 6 <LinearLayout 7 android:layout_width="match_parent" 8 android:layout_height="90dp"> 9 <RadioButton 10 android:id="@+id/normal_button" 11 android:layout_width="140dp" 12 android:layout_height="70dp" 13 style="@style/buttonWithCheckBox" 14 android:text="hoge1"> 15 </RadioButton> 16 <RadioButton 17 android:id="@+id/normal_button2" 18 android:layout_width="140dp" 19 android:layout_height="70dp" 20 style="@style/buttonWithCheckBox" 21 android:text="hoge2"> 22 </RadioButton> 23 <RadioButton 24 android:id="@+id/normal_button3" 25 android:layout_width="140dp" 26 android:layout_height="70dp" 27 style="@style/buttonWithCheckBox" 28 android:text="hoge3"> 29 </RadioButton> 30 </LinearLayout> 31 </RadioGroup>
初歩的な質問でしたら申し訳ありません。
ご教示いただけますと幸いです。よろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/02 03:03