【发布时间】:2015-03-03 01:20:32
【问题描述】:
请帮我在RadioButton下方动态添加RelativeLayout(我必须在课堂上创建RelativeLayout和RadioButton)。
类似这样的:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/radioButton3"
android:text="RadioButton" />
<RelativeLayout
android:id="@+id/relativeLayout2"
android:layout_below="@+id/radioButton3"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</RelativeLayout>
</LinearLayout>
要查看我可以写:
myLayout.addView(myView, layoutParams);
但是 ViewGroup 呢?
【问题讨论】:
-
格式化代码并为RelativeLayout添加一个缺少的括号,以便xml有效
标签: java android xml parameters android-relativelayout