在android中,我有一段代码:
// RelativeLayout with id is "root": main.xml
<EditText
android:id="@+id/pref_edit_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:hint="Text to share in preference"
/>
// This is the button I want to add to main.xml
<Button
android:id="@+id/save_button"
android:layout_below="@id/pref_edit_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Save"
/>
在我的活动中,RelativeLayout.LayoutParam
我可以在视图的位置添加,button
但我不能添加或等...另一个视图!那么,任何人都可以提出建议以动态添加与另一个相关的内容吗?left, right, top, bottom
root
below
view
view
RelativeLayout