我有一个textview设置来包装文本。文字正在包装,但它正在破坏文字。我如何告诉textview停止破坏文字?
这是我到目前为止的xml:
<ScrollView
android:id="@+id/widget705"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/widget711"
android:layout_alignParentLeft="true"
>
<TextView
android:id="@+id/widget714"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="I am typing a bunch of text..."
android:ellipsize="start"
>
</TextView>
</ScrollView>