我试图在屏幕上滚动长篇文章,我遇到了这段代码,然而整个文本在屏幕上滚动而不是在一行中滚动。那我怎么能让它直线滚动?
public class MainActivity extends Activity {
TextView txtscroll;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.scrollable_contents);
txtscroll = (TextView) findViewById(R.id.txtscrol);
Animation translatebu = AnimationUtils.loadAnimation(this,
R.anim.animationfile);
txtscroll.setText("Some text view.");
txtscroll.startAnimation(translatebu);
ScrollView scrollable_contents = (ScrollView) findViewById(R.id.scrollableContents);
getLayoutInflater().inflate(R.layout.contents, scrollable_contents);
}
}
<translate
android:duration="5000"
android:fromXDelta="100%p"
android:repeatCount="infinite"
android:toXDelta="-100%p" />
答案 0 :(得分:0)
我会使用子字符串并将其显示在一行中,您需要一个计时器。