RadioGroup不可见球

时间:2016-06-15 18:41:57

标签: android xml android-layout radio-button radio-group

我的XML存在问题。

我的XML不在textview附近显示球。

我告诉你我的代码。

感谢提前!

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <RadioGroup
        android:id="@+id/chk_box_tavolo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"/>

        <TextView
            android:id="@+id/name_tavolo"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textStyle="bold" />
<!--</LinearLayout>-->
</LinearLayout>

2 个答案:

答案 0 :(得分:0)

您正在使用Textview作为radioGroup的子节点,它应该是单选按钮。这是android单选按钮的一个简洁例子。

http://www.mkyong.com/android/android-radio-buttons-example/

答案 1 :(得分:0)

如果您正在使用RadioGroup,那么child必须是RadioButton,而不是textview使用RadioButton。查看this

  

要创建每个单选按钮选项,请在您的。中创建一个RadioButton   布局。但是,因为单选按钮是互斥的,所以   必须将它们组合在一个RadioGroup中。通过分组他们   在一起,系统确保只有一个单选按钮   一次选择。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <RadioGroup
        android:id="@+id/chk_box_tavolo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"/>

    <RadioButton
        android:id="@+id/radioMale"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="male"
        android:checked="true" />

</LinearLayout>