Android ScrollView:滚动显示

时间:2014-05-02 23:37:16

标签: android

我有一个Horizo​​ntalScrollView,它包含一个带有长文本的TextView。 ScrollView以编程方式从右向左滚动到TextView文本的末尾,以便结束显示在电话显示的右边缘。

是否可以进一步滚动文本以使其滚出电话显示屏的左侧?

1 个答案:

答案 0 :(得分:0)

要在文本结束后继续滚动,您可以像这样对TextView应用填充:

<HorizontalScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/text"
            android:paddingRight="50dp"/>

</HorizontalScrollView>

填充的值决定了您继续滚动到文本末尾的距离。 50dp大约是设备屏幕上手指的大小。