问题
I try setWidth() and setheight() method but it not work
回答1:
Try using LayoutParams. For example
button.setLayoutParams (new LayoutParams(50, LayoutParams.WRAP_CONTENT)
回答2:
For me works perfect this:
ViewGroup.LayoutParams params = myButton.getLayoutParams();
//Button new width
params.width = 400;
myButton.setLayoutParams(params);
回答3:
I found this to be the best solution because it also allows the button to be repositioned at the same time by simply changing its margin:
int buttonWidth = (int) (screenWidth / 3.0);
RelativeLayout.LayoutParams params = (LayoutParams) myButton.getLayoutParams();
params.width = buttonWidth;
params.leftMargin = buttonWidth;
myButton.setLayoutParams(params);
来源:https://stackoverflow.com/questions/5472445/how-to-change-size-of-button-dynamic-in-android