A 在线性布局的底部有按钮。此布局中的其他内容可能会更改其高度。因此,按钮向上移动。如何使按钮在布局上“固定”?
问问题
73 次
1 回答
0
你必须使用RelativeLayout ....你的代码动态
RelativeLayout rl = new RelativeLayout(this);
LayoutParams params = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
rl.setLayoutParams(params);
Button button = new Button(this);
button.setText("Previous");
LayoutParams params1 = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
params1.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
button.setLayoutParams(params1);
rl.addView(button);
于 2012-09-08T12:34:48.750 回答