0

现有项目重构为 android.x 后,出现错误,onMenuItemSelected无法覆盖该方法。因为androidx.appcompat.app.AppCompatActivity这种方法是最终的。我现在如何处理菜单点击?

编辑:似乎,这种变化不仅在 androidx 上,而且在支持 27

4

1 回答 1

0

这取决于您要处理的菜单类型。Android 有上下文菜单和选项菜单。onMenuItemSelected- 这是此类菜单类型的一般回调。

因此,对于单击上下文菜单,您应该使用onContextItemSelected方法,

对于选项菜单onOptionsItemSelected

于 2018-05-19T17:25:41.113 回答