我已經更新我的SDK到最新版本,但現在我得到一個lint錯誤。預期資源的類型動畫師[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" />
它總是工作過。有人可以解釋爲什麼我得到這個錯誤嗎?