参见英文答案 >
Remove space between stacked TextViews8个
我的应用程序中有两个垂直TextView元素.
TextViews之间有很多空间,pading和layoutMargin都是0
我的应用程序中有两个垂直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