Android:如何以编程方式创建按钮?

时间:2012-07-25 19:36:03

标签: android

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

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);

但它不起作用。按钮出现在左上方。

有关如何解决此问题的任何线索?

2 个答案:

答案 0 :(得分:20)

我会做类似的事情:

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

看看是否有效。

答案 1 :(得分:11)

或者您可以使用RelativeLayout作为您的父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设置多个规则。