我的问题很简单,
如何以编程方式设置按钮layout_gravity?
我在互联网上找到了它,但它只是抛出了一个Nullpointer异常:
Button MyButton = new Button(this);
LinearLayout.LayoutParams lllp=(LinearLayout.LayoutParams)MyButton.getLayoutParams();
lllp.gravity=Gravity.RIGHT;
MyButton.setLayoutParams(lllp);
MyLinearLayout.addView(MyButton);
有什么办法吗?