在Android中处理后退按钮事件的正确方法是什么?

时间:2014-10-02 10:39:47

标签: java android mobile

这就是我所拥有的。

enter image description here

这就是问题所在。

enter image description here

我该怎么做才能避免这种警告?

1 个答案:

答案 0 :(得分:1)

试试这个:

public boolean onKeyDown(int keyCode, @NonNull KeyEvent event)

并添加:

import android.support.annotation.NoNNull;

另请注意:Meaning of Android Studio error: Not annotated parameter overrides @NotNull parameter

下次将代码直接发布为文本。