Android - MenuItem onOptionsItemSelected 方法不起作用但未返回任何错误

Android - MenuItem onOptionsItemSelected method not working but returning no errors

我是 android 开发的新手,一直在努力学习 MenuItem,但收效甚微。单击菜单项时调用方法时遇到问题。这是我的代码:

    @Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    String selectedMenuIdString = (String) item.getTitleCondensed();

    if (selectedMenuIdString.equals("about")) {
        doThis(item);
        return true;
    }
    return true;
}

public void doThis(MenuItem item) {
    Toast.makeText(this, "Hello World", Toast.LENGTH_LONG).show();
}

几天前它工作过一次,但现在不行了,我不知道为什么。有人能帮忙吗?

<item
    android:id="@+id/search"
    android:orderInCategory="100"
    android:title="@string/search"
    android:titleCondensed="search"
    />
 <item
    android:id="@+id/products"
    android:orderInCategory="100"
    android:title="@string/products"/>
<item
    android:id="@+id/contact_us"
    android:orderInCategory="100"
    android:title="@string/contactus"/>
<item
    android:id="@+id/about"
    android:orderInCategory="100"
    android:title="@string/about"/>

还有我的琴弦:

<string name="search">Search</string>
<string name="products">Products</string>
<string name="contactus">Contact Us</string>
<string name="about">About</string>

这样操作,简单多了:

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    int id = item.getId(); // Retrieve the id of the selected menu item

    switch(id) {
        case R.id.about: // "@+id/about" is the id of your menu item (menu layout)
            doThis(item);
            return true;
            break;
        case ...
    }
    return super.onOptionsItemSelected(item);
}

没有听众,没有额外的复杂性。

始终比较项目 ID 而不是标题或其他内容,就像在其他答案中一样。

另一个不错的方法:尝试通过 OnMenuItemClickListener 在 onPrepareOptionsMenu 函数中处理点击事件。示例代码如下:

@Override
public boolean onPrepareOptionsMenu(Menu menu) {

       MenuItem prefs = menu.findItem(R.id.prefs); // your item identifier
       prefs.setOnMenuItemClickListener(new MenuItem.OnMenuItemClickListener() {
            @Override
            public boolean onMenuItemClick(MenuItem item) {
                doThis();
                return false;
            }
        });
}

你说

String selectedMenuIdString = (String) item.getTitleCondensed();

    if (selectedMenuIdString.equals("about")) {

这里显示的关于菜单项没有压缩标题

<item
    android:id="@+id/about"
    android:orderInCategory="100"
    android:title="@string/about"/>

所以修改你的代码:

@Override
public boolean onOptionsItemSelected(MenuItem item) {

    switch(item.getItemId()) {
        case R.id.about:{
            //do something here
            return true;
            break;
        }
        case R.id.search:{
            //do something here
            return true;
            break;
        }
        case R.id.contact_us:{
            //do something here
            return true;
            break;
        }
        case R.id.products:{
            //do something here
            return true;
            break;
        }
    }
    return super.onOptionsItemSelected(item);
}