我在用什么?
我正在使用 kotlin 编写默认的导航抽屉活动
我的问题
根据图像有一个“三点下拉菜单”:
当我点击菜单时,很少有函数被调用。不确定正在执行哪一段代码。
我的问题
有很多导航抽屉的教程,但我找不到任何针对特定情况的内容,尤其是对于 kotlin。
抽屉.xml
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_settings"
android:orderInCategory="100"
android:title="@string/action_settings"
app:showAsAction="never" />
<item
android:id="@+id/action_logout"
android:orderInCategory="100"
android:title="@string/action_logout"
app:showAsAction="never" />
Drawer.kt
根据菜单操作,我没有看到任何代码