我在TextView
中有RelativeLayout
我在其中设置字符串中的文本,该字符串包含超过2行的文本。但我想将文本设置为两行。一切正常,但问题是两行中的文字没有很好地对齐。
以下是它的外观:
这是第一行的文字 其中包含虚拟文字
正如您所看到的,我将左边距设置为5,然后它仅应用于第一行但不应用于第二行。那么问题是什么,我该如何解决?
<TextView
android:id="@+id/message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/image"
android:maxLines="2"
android:layout_marginLeft="10dp"
android:textSize="20sp"
android:textColor="#000000"
android:textAppearance="?android:attr/textAppearanceMedium">
</TextView>