2
私はラジオボタンのグループを追加したい場合は、新しいアンドロイドプログラミングで、テキストを正しく表示しないラジオボタンが混在している私が何を意味するかを理解する:ラジオボタンが正しく表示されない場合は、アンドロイドスタジオ
と私はあなたが私を助けることを願って、この私の単純なコードを、どうもありがとう
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/gRadio">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New RadioButton"
android:id="@+id/rB1" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New RadioButton"
android:id="@+id/rB2" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New RadioButton"
android:id="@+id/rB3" />
</RadioGroup>
</LinearLayout>
- のAndroid Studioの2.1.2
- jdk1.8.0_31
- のGradle 2.10
- アンドロイドプラグイン2.1.2
- それは大丈夫だ23
- ビルドツールのバージョン24
レイアウトはうまくいくはずです。物理デバイスでテストしましたか? –
あなたのルートレイアウトは何ですか?完全なXMLコードを投稿 –
@ L.Swifterいいえ私はpgysicデバイスではテストしませんでしたが、アンドロイドスタジオで正しく表示されるはずです – Zola