gpt4 book ai didi

android - 菜单项未检测到用户点击 action_finish 按钮

转载 作者:行者123 更新时间:2023-11-29 20:52:08 24 4
gpt4 key购买 nike

我有一个带有寻呼机的 ScreenSlideActivity.java 滑动 fragment 。因为我想创建一个带有屏幕幻灯片动画的教程,所以我想在用户按下“完成”按钮时将其导航回主 Activity 。我的问题是 onOptionsItemSelected 中的菜单项没有检测到用户对“完成”按钮的压力。这是我的代码:

在 onCreateOptionsMenu 中,我附加了三个按钮:“上一个”、“下一个”和“完成”,并根据当前选择的页面向操作栏添加“下一步”或“完成”按钮。

@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
getMenuInflater().inflate(R.menu.activity_screen_slide, menu);

menu.findItem(R.id.action_previous).setEnabled(mPager.getCurrentItem() > 0);

// Add either a "next" or "finish" button to the action bar, depending on which page
// is currently selected.
MenuItem item = menu.add(
Menu.NONE,
R.id.action_next,
Menu.NONE,
(mPager.getCurrentItem() == mPagerAdapter.getCount() - 1)
? R.string.action_finish : R.string.action_next);
item.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM | MenuItem.SHOW_AS_ACTION_WITH_TEXT);
return true;
}

然后在 onOptionsItemSelected 中我处理与三个按钮的交互

@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:

// Navigate "up" the demo structure to the launchpad activity.
// See http://developer.android.com/design/patterns/navigation.html for more.
NavUtils.navigateUpTo(this, new Intent(this, MainActivity.class));
return true;

case R.id.action_previous:
// Go to the previous step in the wizard. If there is no previous step,
// setCurrentItem will do nothing.
mPager.setCurrentItem(mPager.getCurrentItem() - 1);
return true;

case R.id.action_next:
// Advance to the next step in the wizard. If there is no next step, setCurrentItem
// will do nothing.
mPager.setCurrentItem(mPager.getCurrentItem() + 1);
return true;

case R.id.action_finish:
NavUtils.navigateUpTo(this, new Intent(this, MainActivity.class));
return true;
}

return super.onOptionsItemSelected(item);
}

“上一个”按钮是在“activity_screen_slide.xml”中创建的:

<menu xmlns:android="http://schemas.android.com/apk/res/android">

<!-- Adds an item to the list. -->
<item android:id="@+id/action_previous"
android:title="@string/action_previous"
android:showAsAction="ifRoom|withText" />
</menu>

而另外两个只是在“ids.xml”中创建为 ids:

<resources>
<!--
These action bar item IDs (menu item IDs) are defined here for
programmatic use. Normally, IDs are created using the "@+id/foo"
syntax,
but since these IDs aren't created in menu XML, rather
used for programmatically-instantiated action bar items, they
are defined here.
-->
<item type="id" name="action_flip" />
<item type="id" name="action_next" />
<item type="id" name="action_finish" />

然后我得到了 以前的 下一个 结束在我的 string.xml 文件中。

因此,“上一个”按钮是菜单布局文件中唯一定义的按钮; “下一步”按钮和“完成”按钮都作为 id 存在,但这对于“下一步”按钮似乎不是问题,就像对于“完成”按钮一样。为什么它与“完成”按钮的效果不一样?

编辑:已解决

The solution worked this way:

    MenuItem item = menu.add(
Menu.NONE,
(mPager.getCurrentItem() == mPagerAdapter.getCount() - 1)
? R.id.action_finish : R.id.action_next,
Menu.NONE,
(mPager.getCurrentItem() == mPagerAdapter.getCount() - 1)
? R.string.action_finish : R.string.action_next);
item.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM | MenuItem.SHOW_AS_ACTION_WITH_TEXT);
return true;
}

非常感谢!

最佳答案

来自documentation :

菜单对象itemId的add()方法中的第二个参数提到:

唯一的项目 ID。如果不需要唯一 ID,请使用 NONE。

您分配给按钮的 ID 是 R.id.action_next。您确实有一个条件,但最后一个参数 titleResResource identifier of title string。因此,当您应该更改 add() 方法的第二个参数(即项目的 ID)时,您只更改插入到菜单中的菜单项的标题。

结论:menu.add() 方法的第二个参数必须有另一个条件赋值,其操作方式与第四个参数的操作相同。

关于android - 菜单项未检测到用户点击 action_finish 按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28857127/

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