我的应用程序中有一个带有垂直滚动的textview。顺利但没有任何“动画”,所以看起来不是很漂亮。我该如何实现流畅的动画?如果需要:
java:
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" />
答案 0 :(得分:-1)
尝试让您的TexView成为ScrollView的孩子!
<ScrollView>
<TextView>
</TextView>
</ScrollView>
就像那样。您的文本应该像任何其他可滚动的Android应用程序一样滚动当您到达TextView的末尾时,您会知道经典的蓝色或橙色光。