在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
我可以在位置root
鑑於left, right, top, bottom
添加button
,但我不能添加below
或等...另一種觀點! 那麼,任何人都可以給出一個建議,在RelativeLayout
中動態添加一個與view
中的另一個view
相關的view
?
謝謝,我會試試! – 2012-07-14 13:08:28
@KingfisherPhuoc你可以請指導我如何將多個動態按鈕放置在相對佈局中的隨機位置 – 2017-02-02 12:08:28