9

我需要以编程方式创建一个按钮,并将其置于布局的中心,水平和垂直。我正在尝试使用以下代码:

LinearLayout ll = (LinearLayout)findViewById(R.id.layoutItem);
Button b = new Button(this);        
b.setBackgroundDrawable(getResources().getDrawable(R.drawable.button));
b.setLayoutParams(new LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT)); 
b.setGravity(Gravity.CENTER_HORIZONTAL|Gravity.CENTER_VERTICAL);
ll.addView(b);

但它不起作用。该按钮出现在最左侧。

关于如何解决这个问题的任何线索?

4

2 回答 2

22

我会做类似的事情:

LinearLayout.LayoutParams ll = (LinearLayout.LayoutParams)b.getLayoutParams();    
ll.gravity = Gravity.CENTER;
b.setLayoutParams(ll);

看看这是否有效。

于 2012-07-25T19:58:08.417 回答
10

或者您可以使用 aRelativeLayout作为您的父母View并执行以下操作:

this.testButton= (Button) this.findViewById(R.id.testButton);

RelativeLayout.LayoutParams testLP = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

testLP.addRule(RelativeLayout.CENTER_IN_PARENT);

this.testButton.setLayoutParams(testLP);

您可以为RelativeLayout.

于 2012-07-25T20:02:08.183 回答