我的活动相对布局中有几个按钮。但我还想在 onCreate() 中动态添加一个按钮,所以我做了这样的事情:
RelativeLayout rl = (RelativeLayout)findViewById(R.layout.activity_start_game);
ImageButton newbtn1 = new ImageButton(this);
newbtn1.setBackgroundResource(R.drawable.game_button_2);
rl.addView(newbtn1);
但我也想设置高度、宽度值和我的新按钮应该正确的信息,例如已经存在的按钮(类似于 toRightOf 在 xml 中,但现在是动态的)。预先感谢您的建议。