如何消除 LinearLayout 中的额外间距?

发布于 2024-09-26 10:55:04 字数 1042 浏览 7 评论 0原文

我构建了一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

缘字诀 2024-10-03 10:55:04

您还可以尝试使用负边距(就像 CSS :)

(我用我的应用程序做到了,效果很好)

<TextView
android:layout_marginTop="-10dp"
android:layout_marginBottom="0dp"
/>

希望这有帮助!

You can also try using a negative margin (just like CSS :)

(I did it with my App and it works great)

<TextView
android:layout_marginTop="-10dp"
android:layout_marginBottom="0dp"
/>

Hope this helps!

半夏半凉 2024-10-03 10:55:04

尝试设置以下属性:

<TextView
android:layout_marginTop="0dp"
android:layout_marginBottom="0dp"
/>

Try setting the following properties :

<TextView
android:layout_marginTop="0dp"
android:layout_marginBottom="0dp"
/>
难理解 2024-10-03 10:55:04

对于某些属性,您使用 sp 而不是 dp 。仅使用 sp 指定字体大小。 :)

You're using sp instead of dp for some of you attributes. Only use sp for font sizes. :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文