Android ContextMenu 更改按钮文本

发布于 2024-11-07 13:36:10 字数 203 浏览 0 评论 0原文

这是我的问题:

我的 android 应用程序中有一个按钮,当我长按它时,会出现一个上下文菜单,其中包含用户可以从中选择的值列表。

我需要做的是,当用户选择一个值时,我需要按钮的文本是该值。我不知道如何让 onContextItemSelected 侦听器记住哪个按钮触发了上下文菜单,然后将其文本设置为所选项目。

感谢您给我的任何帮助/提示。

Here's my problem:

I have a button in my android application that when I longClick it a context menu appears with a list of values that a user can choose from.

What I need to do is when the user chooses a value, I need the button's text to be that value. I can't figure out how to get the onContextItemSelected listener to remember which button triggered the context menu and then set it's text to the selected item.

Thanks for any help/tips you can give me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

随梦而飞# 2024-11-14 13:36:10

您尝试过这个吗?

Have you tried this?

淡淡的优雅 2024-11-14 13:36:10

嗯嗯,我相信你可以做到以下几点:

@Override
public boolean onContextItemSelected(MenuItem item) {
  AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();
  View longClickedView = info.targetView;
  ...
}

Hmmmm, I believe you can do the following:

@Override
public boolean onContextItemSelected(MenuItem item) {
  AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();
  View longClickedView = info.targetView;
  ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文