gpt4 book ai didi

android - 为菜单项设置布局时不调用 OnMenuItemSelected

转载 作者:IT老高 更新时间:2023-10-28 23:27:23 25 4
gpt4 key购买 nike

我有一个从 main_menu.xml 膨胀的菜单:

<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/act_sync"
android:showAsAction="always"
android:actionLayout="@layout/sync_action"
android:icon="@android:drawable/ic_popup_sync" />
</menu>

这是 Activity 中的代码:

@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main_menu, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
MyMessageHandler.debug("menu item selected");
switch(item.getItemId()){
case R.id.act_sync:
sync();
return true;
}
return super.onOptionsItemSelected(item);
}

但是当我触摸菜单项时不会调用 onOptionsItemSelected。当我删除菜单项的 actionLayout 属性时,它工作正常。我怎样才能解决这个问题?
谢谢。

最佳答案

您应该使用以下代码段(仅供引用)

@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.main_menu, menu);
final Menu m = menu;
final MenuItem item = menu.findItem(R.id.ActionConnection);
item.getActionView().setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
sync();
}
});
return true;
}

关于android - 为菜单项设置布局时不调用 OnMenuItemSelected,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17764821/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com