私のSDKを最新のバージョンに更新しましたが、今ではリントエラーが発生しています。予想されるタイプのアニメーターのリソース[ResourceType]
Error: Expected resource of type animator [ResourceType]
エラーは、この行で発生します
AnimatorInflater.loadAnimator(context, R.anim.right_slide_in)
参照リソース/res/anim/right_slide_in.xml
は次のようになります。
<?xml version="1.0" encoding="utf-8"?>
<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator"
android:valueTo="0"
android:valueFrom="1.0"
android:propertyName="xFraction"
android:valueType="floatType"
android:duration="450" />
それは常に前に働いていました。なぜ私はそのエラーが発生しているのか誰かが説明できますか?