2

我的应用程序中有一个带有垂直滚动的文本视图。进展顺利,但没有任何“动画”,所以看起来不是很漂亮。如何实现流畅的动画?如果需要:

爪哇:

TextView textscroll = (TextView) rootView.findViewById(R.id.textscroll);
            textscroll.setText(getCPUinfo());
            textscroll.setMovementMethod(new ScrollingMovementMethod());

和xml:

<TextView
    android:id="@+id/CPUinfo"    
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:maxLines="10"
    tools:ignore="SelectableText" />
4

1 回答 1

0

尝试使您的 TexView 成为 ScrollView 的子项!

<ScrollView>
    <TextView>
    </TextView>
</ScrollView>

就这样。您的文本应该像任何其他可滚动的 Android 应用程序一样滚动您知道,当到达 TextView 的末尾时,您会看到经典的蓝色或橙色光。

于 2013-05-27T18:20:35.327 回答