对齐两行TextView中的句子

时间:2014-04-25 10:44:24

标签: android

我有一个textview,从服务器获取文本,该文本是一个完整的段落,并具有HTML格式。现在我在xml中使用maxline = 2来显示两行中的一些文本。我尝试了许多技巧,但没有任何效果。这是我的xml代码,请告诉我它出了什么问题?

<TextView
        android:id="@+id/message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/subject"
        android:layout_toLeftOf="@+id/date"
        android:maxLines="2"
        android:layout_marginLeft="10dp"
        android:textSize="20sp"
        android:textColor="#666666"
        android:textAppearance="?android:attr/textAppearanceMedium" />

这就是我将文本设置为文本视图的方式。

message.setText(Html.fromHtml(details.Description()));

它总是这样,

     This is the text
that came from server

正如你可以注意到的那样,第一行从第二行开始,而不是从下面开始。我希望两者都从同一个位置开始。问题是来自服务器的文本是单个句子,我不能使用"\n"</br>标签,此文本也在getview的listview设置中。我也尝试了android:gravity="center_horizontal"android:layout_gravity="center_horizontal"

0 个答案:

没有答案