我们如何改变java代码中的按钮大小
我用 java 代码创建了按钮,但无法更改按钮的大小。我使用过
btn = new Button(Activity.this);
btn.setText("\t\t" + lbl + "\t\t\t ");
btn.setBackgroundResource(R.drawable.blue_button);
btn.setwidth(100);
,但没有用。有什么想法吗?谢谢
I created the button in java code and i cant change the size of the button.I used
btn = new Button(Activity.this);
btn.setText("\t\t" + lbl + "\t\t\t ");
btn.setBackgroundResource(R.drawable.blue_button);
btn.setwidth(100);
but no use.Any idea? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将设置按钮宽度
300px
按钮高度100px
。This will set your button width
300px
button height100px
.您需要
将设备像素转换为像素来设置宽度。这里,200 是 edittext UI 小部件的宽度(以 dp 为单位)。
观看本教程
You need
you need to convert device pixels into pixels to set the width. Here, 200 is the width of edittext UI widget in dp.
Watch this tutorial