覆盖长按搜索按钮以显示对话框

发布于 2024-10-22 00:48:09 字数 538 浏览 2 评论 0原文

好的,我已经在 stackoverflow 和网络上的各个网站上搜索了问题/答案。 据我所知,人们似乎认为不可能覆盖长按搜索按钮来启动活动/对话框。这是不可能的,因为市场应用程序 Handcent 使用长按搜索按钮来启动快速撰写活动。 可悲的是,当我指定

<接收器 android:enabled="true" android:name=".musicdialog" > <意图过滤器 android:priority="1"> <动作 android:name="android.intent.action.ACTION_SEARCH_LONG_PRESS" /> < /意图过滤器> < /接收器>

我也尝试过<动作 android:name="android.intent.action.SEARCH_LONG_PRESS" />

有些人认为长按搜索按钮使用 global_search 但我不想覆盖该功能。

简单的问题。如何覆盖长按搜索按钮以显示对话框?

Ok, I've searched the questions/answers on stackoverflow and various sites around the web.
From what I've seen, people seem to think that it is impossible to override the long press search button to start an activity/dialog. This cannot be possible since handcent, a market app uses the long press search button to start a quickcompose activity.
Sadly, when I specify

< receiver android:enabled="true" android:name=".musicdialog" >
< intent-filter android:priority="1">
< action android:name="android.intent.action.ACTION_SEARCH_LONG_PRESS" />
< /intent-filter>
< /receiver>

I've also tried < action android:name="android.intent.action.SEARCH_LONG_PRESS" />

some people have thought the long press search button uses global_search but I don't want to override that functionality.

Simple question. How do I Override Long Press Search button to show dialog?

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

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

发布评论

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

评论(1

烟酒忠诚 2024-10-29 00:48:09

ACTION_SEARCH_LONG_PRESS 是一个活动操作。您可以将其与 中的 一起使用,而不是与 一起使用。

ACTION_SEARCH_LONG_PRESS is an activity action. You use it with an <activity> in its <intent-filter>, not with a <receiver>.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文