我動態的創建了一個Relative Layout:
RelativeLayout layout = new RelativeLayout( this );
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT);
現在我想在Relative Layout上面添加兩個按鈕,但是這兩個按鈕都顯示在Relative Layout的左邊,還重疊在一起。
buttonContainer.addView(btn1);
buttonContainer.addView(btn2);
現在我想知道如何動態的設置按鈕的屬性android:layout_alignParentRight="true"
或者android:layout_toLeftOf="@id/btn"
就像在xml中一樣?
你可以使用View.getLayoutParam
s從代碼中訪問 LayoutParams
。你只需要知道你訪問的什麼LayoutParams
。這通常是通過檢查包含的ViewGroup
就能知道。如果它有一個LayoutParams
子類,那你就應該使用這個LayoutParams
類。
在你的案例中它是RelativeLayout.LayoutParams
,你應該使用RelativeLayout.LayoutParams#addRule(int verb)
和RelativeLayout.LayoutParams#addRule(int verb, int anchor)
你可以通過以下代碼獲得:
RelativeLayout.Layoutparams params = (RelativeLayout.LayoutParams)button.getLayoutParams();
params.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
params.addRule(RelativeLayout.LEFT_OF, R.id.id_to_be_left_of);
button.setLayoutParams(params); //使layout更新