Android:如何使用选框从Textview中删除结束空白

时间:2016-07-21 14:12:22

标签: android textview

我已经使用选框创建了TextView,但我想删除结尾之间的空白区域并再次开始显示文本。

这是屏幕

http://i.stack.imgur.com/dfdT8.png

这是我的布局

<TextView
        android:id="@+id/text1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:marqueeRepeatLimit="marquee_forever"
        android:scrollHorizontally="true"
        android:singleLine="true"
        android:text="dkfjdkf jdfjfsfjkfa asdfjakjfdkasf sfdjaskfjdksf sfdjsfjk gfhgfhfai ggfghgf" />

2 个答案:

答案 0 :(得分:0)

使用:

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

答案 1 :(得分:0)

如果在空白区域中你指的是TextView之前和之后的黑色条纹,你可以调整你的布局到             的机器人:layout_width = “match_parent”

<TextView
        android:id="@+id/text1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:marqueeRepeatLimit="marquee_forever"
        android:scrollHorizontally="true"
        android:singleLine="true"
        android:text="dkfjdkf jdfjfsfjkfa asdfjakjfdkasf sfdjaskfjdksf sfdjsfjk gfhgfhfai ggfghgf" />

此外,请确保该TextView的父布局不是应用任何边距