如何消除 LinearLayout 中的额外间距?
我构建了一个使用 LinearLayout 的小部件,并在布局中放置了两个 TextView。 布局的重心是“顶”。
问题是我在两个 TextView 之间有一个空格,但无法删除它。
<TextView
android:id="@+id/Text01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="bottom|center_horizontal"
android:text="blah blah"
android:background="@android:color/transparent"
android:textColor="#3e6eb4"
android:textSize="11sp"
/>
<TextView
android:id="@+id/text02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="top|center_horizontal"
android:text=""
android:background="@android:color/transparent"
android:textColor="#3e6eb4"
android:textSize="14sp"
android:padding="0sp"
android:verticalSpacing="0sp"
/>
正如你所看到的,我尝试将 padding 0 和verticalSpacing 0 设置为0,但它们之间仍然有一个空格。
我该如何修复它?
谢谢。
I've built a widget that uses a LinearLayout and I've put two TextViews in the layout.
The gravity of the layout is "top".
The problem is that I get a space between the two TextViews and I can't get rid of it.
<TextView
android:id="@+id/Text01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="bottom|center_horizontal"
android:text="blah blah"
android:background="@android:color/transparent"
android:textColor="#3e6eb4"
android:textSize="11sp"
/>
<TextView
android:id="@+id/text02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="top|center_horizontal"
android:text=""
android:background="@android:color/transparent"
android:textColor="#3e6eb4"
android:textSize="14sp"
android:padding="0sp"
android:verticalSpacing="0sp"
/>
As you can see I tried putting padding 0 and verticalSpacing 0 but I still get a space between them.
How can I fix it?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您还可以尝试使用负边距(就像 CSS :)
(我用我的应用程序做到了,效果很好)
希望这有帮助!
You can also try using a negative margin (just like CSS :)
(I did it with my App and it works great)
Hope this helps!
尝试设置以下属性:
Try setting the following properties :
对于某些属性,您使用 sp 而不是 dp 。仅使用 sp 指定字体大小。 :)
You're using sp instead of dp for some of you attributes. Only use sp for font sizes. :)