问题标签 [android-search]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - Intent ACTION.VIEW fails
I've recently created search-suggestions but right now am I facing one strange issue. In searchable.xml did I set android:searchSuggestIntentAction="android.intent.action.VIEW"
and in Manifest did i put
The result is that it opens another activity - activity, where i show results, when the query is submitted and where is put this intent filter <intent-filter> ...SEARCH /> </intent-filter>
Is there any way, how to open different activity, when the suggestion is clicked?
My AndroidManifest.xml - check the //notes
my searchable.xml
my SuggestionProvider.java
android - Intent.ACTION_VIEW 在可搜索中不起作用
我正在尝试在用户单击搜索建议时设置 Intent.ACTION_VIEW。它仍然执行 ACTION_SEARCH 意图,因此它在建议框中搜索提供的信息,但我希望它将它传递给已经显示单击对象的 Activity。我不使用 SearchActivity 及其方法(onNewIntent 等),我只使用 Activity,它显示结果列表 - 它设置为 _default_searchable。
但是,如果我需要在选择建议项时将其传递给不同的活动,我该怎么办?
我已经android:searchSuggestIntentAction="android.intent.action.VIEW"
在 Manifest 中的第二个活动中将意图过滤器设置为 intent.VIEW 但它不起作用
你有什么想法,怎么做?
可搜索的.xml
显现
提供者
提前感谢您的帮助
android - Android:搜索建议的意图错误
我正在尝试为我的应用创建自定义建议。它运作良好,但现在我正在尝试解决一个问题。我已经android:searchSuggestIntentAction="android.intent.action.VIEW"
在 AndroidManifest中设置了
你有什么想法,问题可能出在哪里?
我的安卓清单
我的searchable.xml
我的SuggestionsProvider的一部分
我的搜索活动
对于任何答案或建议,我都会很高兴。我试图解决这个问题很长时间。
提前致谢
android - Intent.ACTION_VIEW 后如何显示数据?
我正在为我的应用程序创建搜索,我需要做的最后一件事是在用户单击搜索建议时“提取”数据。我已经设置Intent.ACTION_VIEW
并获取了数据intent.getData()
;在我的可搜索活动中。但是我现在应该怎么做才能查看数据中“打包”的 TextViews 和 ImageView 等对象呢?我没有这方面的经验,请问您能给我一些建议吗?
非常感谢
我的代码示例:
android - 如何从搜索建议 onClick 中获取文本
我刚刚使用自定义建议实现了搜索,但我仍然想知道如何在另一个Activity
. 我不能这样做,intent.getData().getLastPathSegment()
因为我正在用这种方法传递另一个文本。但是有没有不同的解决方案,如何获取文本?
提前致谢
android - 如何从光标中的 SearchView 获取文本
我已经成功地将搜索建议放到我的应用程序中,现在我需要找出如何将输入的文本从 SearchView 获取到我的光标。我知道 onQueryTextChange(String) 方法,但是如何在我的 contentprovider 类中正确获取文本?
android - SearchView 中的进度条
我想问是否有某种方法,如何完成将 ProgressBar 放入 SearchView 小部件中,如下图所示?
android - Android使用支持库来支持SearchView
这是我的代码:
我的最低 API 是 8。
我有这个编译错误
请注意,我无法更改最低 SDK。