问题描述
- fragment放在radiogroup下面报错
-
我的布局是这样的:
android:id="@+id/rg_question"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:gravity="center"
android:orientation="horizontal">
android:id="@+id/rb_tips"
android:text="hi"
style="@style/question_tab_top"
android:checked="true"
/>
android:id="@+id/rb_service"
android:text="hello"
style="@style/question_tab_top"
/>android:id="@+id/fragment_tips"
android:name="com.example.insurance.utils.TipsFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="10"/>
android:id="@+id/fragment_service"
android:name="com.example.insurance.utils.ServiceFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="10"/>错误日志:Caused by: java.lang.ClassCastException: android.widget.RadioButton cannot be cast to android.widget.RadioGroup 当我把RadioGroup放在fragment下方时程序正常运行 请问是什么原因
解决方案
咦?怎么把我的控件变没了?上面那一段是RadioGroup 和RadioButton,下面是fragment
时间: 2024-10-23 16:49:49