在某些设备上缩放动画期间,文本有时会在 TextView 中消失

Sometimes text disappears in TextView during scale animation on some devices

我想在每个 activity 的 onResume 开始 textview 的弹跳缩放动画。我注意到有时文本在文本视图缩放动画期间不显示。我只看到那个文本视图的背景。此错误仅出现在某些设备上:少数小米机型、一台三星、一台 Pixel。在模拟器上运行良好。我正在使用 Animator。我尝试了 Animation class 但仍然存在错误 exists.How 我可以解决这个问题吗?

我的Activity代码:

class MainActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
    }

    override fun onResume() {
        super.onResume()
        playAnimation()
    }

    private fun playAnimation() {
        val textView = findViewById<TextView>(R.id.textView)
        textView.scaleX = 0f
        textView.scaleY = 0f
        val badgeAnimator = ValueAnimator.ofFloat(0f, 1f
        ).apply {
            duration = 800L
            interpolator = BounceInterpolator()
            addUpdateListener { animation ->
                val value = animation.animatedValue as Float
                textView.scaleX = value
                textView.scaleY = value
            }
        }
        val animatorSet = AnimatorSet()
        animatorSet.apply {
            startDelay = 1500L
            play(badgeAnimator)
            start()
        }
    }
}

Activity xml:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        android:textColor="@color/white"
        android:paddingHorizontal="10dp"
        android:background="@drawable/bg_badge_count_v2"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

本期演示视频。

我发现如果我对起始值为 0.01f 而不是 0f 的动画器进行赋值,错误就会消失。这也适用于动画 class。我认为当 scaleX 和 scaleY 为零时,android 系统会清除 TextView 中的文本。

所以我认为 0.01f 没问题,因为它对用户不可见并且看起来与 0f 相同