如何在android上使textviews非常接近?

时间:2014-08-23 20:50:52

标签: android android-layout textview

我目前正在Android中构建一个布局,但我遇到了在Android中刻字(两个文本视图之间的空间,一个在另一个之上)的困难。即使我在两个textviews之间没有设置垂直边距,我也无法将两个textviews之间的大小减小到我的设计师喜欢的位置。 textview以相对布局排序,一个textview正好在另一个下面。以下是textviews的xml:

<com.devspark.robototextview.widget.RobotoTextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Auction Name"
    android:textColor="@color/LAgrey"
    android:id="@+id/tv_auctionTitle"
    android:layout_marginTop="10dp"
    android:layout_alignParentTop="true"
    android:textStyle="bold"
    android:textSize="16sp"
    android:layout_marginRight="16dp"
    android:layout_marginLeft="16dp"
    android:layout_alignParentLeft="true"
    app:typeface="roboto_regular"/>

<com.devspark.robototextview.widget.RobotoTextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Auctioneer Name"
    android:layout_below="@+id/tv_auctionTitle"
    android:layout_marginLeft="16dp"
    android:id="@+id/tv_auctioneerDetails"
    android:textSize="@dimen/auctionList_SubTitleTextSize"
    android:textAllCaps="true"
    android:textColor="#a7a6a6"
    app:typeface="roboto_black"/>

如何在两个文本字段之间使垂直间距更小?如有必要,我可以提供截图。

1 个答案:

答案 0 :(得分:0)

您可能需要自定义TextView - 之前我遇到过这个问题。有两个“填充”特征很少调整,可能需要自定义TextView对象。

  1. 行间距:
  2. android textview padding between lines

    1. 字体填充:
    2. How to change letter spacing in a Textview?