Android Studio中的错误警告

Android Studio在下面的代码中显示警告“永不使用方法setFoo”:

public void setFoo(float foo) {
    mFoo = foo;
    invalidate();
}

protected void startFooProcess() {
    ObjectAnimator animator = ObjectAnimator.ofFloat(this, "foo", 1.0f, 0.0f);
    animator.setDuration(getResources().getInteger(android.R.integer.config_longAnimTime));
    animator.setTarget(this);
    animator.start();
}

但是我将它与对象动画师一起使用,如何抑制这种警告?

解决方法:

File > Invalidate caches / Restart

解决这个问题

你可以看到这个enter link description here

上一篇:PHP数组上的非法字符串偏移警告


下一篇:自PHP 7起,不支持使用弃用的PHP4样式类构造函数