Android规模动画闪烁

时间:2012-10-05 14:28:12

标签: android textview scale flicker

我的应用中有框架布局。 在框架中我有ImageView和TextView。 我需要框架布局一直反弹。

我用xml制作了这个动画:

<scale
    android:duration="100"
    android:fromXScale="0.1"
    android:fromYScale="0.1"
    android:pivotX="50%"
    android:pivotY="50%"
    android:toXScale="1.0"
    android:toYScale="1.0" />

<scale
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="1200"
    android:fillAfter="false"
    android:fromXScale="1.0"
    android:fromYScale="1.0"
    android:interpolator="@android:anim/accelerate_decelerate_interpolator"
    android:pivotX="50%"
    android:pivotY="50%"
    android:startOffset="100"
    android:repeatCount="infinite"
    android:repeatMode="reverse"
    android:toXScale="0.9"
    android:toYScale="0.9" />

问题是文本视图中的文本闪烁。 ImageView很好。 如何防止这个问题?

1 个答案:

答案 0 :(得分:1)

我找到了解决方案:

在Manifest.xml中添加了hardwareAccelerated。