我正在尝试嵌入RadioGroup
,LinearLayout
以便将元素动态添加到我的布局中。我的代码在这里
`
<RadioButton
android:id="@+id/dailyCheck"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/dailyCheck"/>
<RadioButton
android:id="@+id/selectedCheck"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/selectedCheck" />
<RadioButton
android:id="@+id/specificCheck"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/specificCheck" />
`
这样做会显示一个异常:
This RadioGroup layout or its LinearLayout parent is useless
请建议我该怎么做。
为什么不能LinearLayout
和RadioGroup
在一起在一个文件中。