1
長いテキストを画面全体にスクロールしようとしていますが、このコードを見つけましたが、1行でスクロールせずにテキスト全体がスクロールします。だから私はそれを一直線にスクロールさせることができますか?アンドロイドで画面全体にテキストをスクロールする
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" />