android减少两个垂直TextViews之间的空间

前端之家收集整理的这篇文章主要介绍了android减少两个垂直TextViews之间的空间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Remove space between stacked TextViews8个
我的应用程序中有两个垂直TextView元素.
TextViews之间有很多空间,pading和layoutMargin都是0

有没有办法减少这个空间?

编辑
这是我的代码

.
.

<LinearLayout 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:gravity="right"
            android:paddingRight="10dp"
            android:layout_weight="1">
                <TextView 
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textSize="@dimen/text_size_extra_small"
                    android:textColor="@color/home_tab_text_normal"
                    android:text="Test1"/>
                <TextView 
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textColor="@color/orange_text_color"
                    android:textSize="@dimen/text_size_large"
                    android:textStyle="bold"
                    android:text="Text2"/>


        </LinearLayout>         

.
.

Thnaks

解决方法

负边距可以通过两种方法设置 –

1)通过xml – 将“android:Layout_marginTop”字段设置为否定 – 其他人已经在上面建议过了

2)通过java(以编程方式) – 将LayoutParams的“topMargin”字段设置为负数.

您也可以参考this

原文链接:https://www.f2er.com/android/313811.html

猜你在找的Android相关文章