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