为甚RadioButton在红米手机上不能跑

报错:Error inflating class android.widget.RadioButton
把这段删了就能跑

 <RadioGroup
            android:id="@+id/rg_01"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="30dp"
            android:orientation="horizontal" >

            <RadioButton
                android:id="@+id/rb_01"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="5dp"
                android:checked="true"
                android:text="@string/rb_boy" />

            <RadioButton
                android:id="@+id/rb_02"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="5dp"
                android:text="@string/rb_girl" />
        </RadioGroup>

xml没什么问题啊,你有没有在代码中调用与操作过对应的控件,如果有,并且在在其他的机型上是正常的,那么检查下版本是否一致,如果不一致可能是方法的问题,有些低版本的方法是有bug的,自己检查下

看看 java中findviewbyid那里 对应的id的类是否正确