我有一个带有一些文本的TextView,我想让它用滚动的选框动画制作动画.我看到这个
popular question关于强制选框动画,但是答案中的代码只有在文本足够长以超出TextView的边界(因此文本被截断)时才起作用,我正在寻找永久制作的解决方案无论文本的宽度如何,文本都有这个选取框动画;这可能吗?
解决方法
制作自己的动画.
动画/ marquee.xml
<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <translate android:fromXDelta="100%" android:toXDelta="-100%" android:duration="10000" android:repeatCount="infinite" android:repeatMode="restart" android:interpolator="@android:anim/linear_interpolator"/> </set>
在你的活动中,
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.my_activity); TextView myTextView = (TextView) findViewById(R.id.myTextView); Animation marquee = AnimationUtils.loadAnimation(this,R.anim.marquee); myTextView.startAnimation(marquee); }