如何摆脱LinearLayout中的额外间距?

时间:2010-10-06 08:23:05

标签: android spaces android-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"
        />

正如你所看到的,我尝试将填充0和verticalSpacing设置为0,但我仍然在它们之间留出空格。

我该如何解决?

感谢。

3 个答案:

答案 0 :(得分:9)

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

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

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

希望这有帮助!

答案 1 :(得分:0)

尝试设置以下属性:

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

答案 2 :(得分:0)

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