android studio中的错误警告

时间:2014-12-08 18:27:07

标签: android android-studio warnings

Android工作室显示警告"方法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();
}

但我正在使用它与对象动画师,如何压制这种警告?

2 个答案:

答案 0 :(得分:3)

  

档案>无效缓存/重新启动

解决此问题

您可以看到此enter link description here

答案 1 :(得分:1)

如果您点击setFoo方法名称,您将获得一个黄色灯泡图标,您可以点击该图标以获取quickfix图标。作为快捷方式,使用方法名称中的插入符号,您可以使用键组合来显示"显示意图操作",这是我使用的默认Mac键盘映射上的Alt + Enter。

quickfix"安全删除' setFoo(浮动)'"不是您想要的,但您可以通过键盘或单击右箭头展开更多选项。这显示了可用于禁用检查的选项。截图:

Screenshot of UI for options for suppressing warnings