Android TextView:有没有办法用短文强制选框动画?

前端之家收集整理的这篇文章主要介绍了Android TextView:有没有办法用短文强制选框动画?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个带有一些文本的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);
}
原文链接:https://www.f2er.com/android/314278.html

猜你在找的Android相关文章