Activity 上元素的宽度不正确?
我将应用程序的布局设置为 480dpi 宽,480/4 为 120。因此,如果我的应用程序顶部有 4 个按钮,并且我将其中一个设置为 120dpi 宽,为什么该按钮占据了一半屏幕?!如何让按钮在顶部的大小均匀?
在这里,我只是在顶部添加了 4 个按钮:
然后前两个按钮的宽度为 120 dpi:
I have the layout of my app set to 480dpi wide, and 480/4 is 120. So, if I have 4 buttons at the top of my app, and I set one to 120dpi wide, why does the button take up half the screen?! How can I get buttons to get sized evenly at the top?
Here, I just added 4 buttons at the top:
Then the first two buttons are 120 dpi wide:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看看这个:
check this out:
您可以使用 FILL_PARENT 参数作为布局宽度,并为每个按钮添加权重 1 以获得所需的效果
You can use FILL_PARENT parameter for layout width and add a weight 1 to each of your buttons to get desired effect
试试这个
Try this