setWidth()按钮Android

tho*_*ron 3 size android view button width

我已经在RelativeLayout中创建了一个Button,我想设置它的大小.但我只能设置一个比原来更大的尺寸,例如我可以将其调整为200dp但不调整为20dp.

有解决方案吗?

这是我的代码

Button b = new Button(getApplicationContext());
myLayout.addView(b);
b.setWidth(200); // Work
b.setWidth(20); // Don't work
Run Code Online (Sandbox Code Playgroud)

谢谢

Mat*_*ers 6

这是因为默认情况下Button其最小宽度64dip.0在设置宽度之前将其设置为.

b.setMinimumWidth(0);
Run Code Online (Sandbox Code Playgroud)