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?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
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>
.