如何保持TableRow列中控件的宽度
我有一个 tablerow
,其中放入了 width==50dp
的文本视图;但是当我添加另一个包含 的
with tablerow
时textviewwidth==100dp
,那么第一个textview必须拉伸到100dp。
如何保持第一个textview的宽度?
I have a tablerow
in which i put in a textview with width==50dp
;But when i add another tablerow
which contains a textview
with width==100dp
,then the first textview has to be stretched to 100dp.
How can keep the width of the first textview's width?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 android:stretchColumns 属性。
要了解更多信息,请查看链接
Use android:stretchColumns properties .
To Know more Check out Link
您还可以在两个文本视图的布局中尝试此操作:
android:layout_width="0dp"
android:layout_weight="1"
这将为两行提供相同的宽度。
You can also try this in layout for both textviews:
android:layout_width="0dp"
android:layout_weight="1"
This will give equal width to both the rows.