【发布时间】:2015-09-07 16:20:34
【问题描述】:
搜索小部件的操作视图意图不发送意图 我正在使用 Toast 来显示当用户从快速搜索框中的建议中选择项目时是否发送意图
-
这里是 sn-p,在可搜索的 Activity 中接收到意图
if (Intent.ACTION_VIEW.equals(intent.getAction())){ /* Intent countryIntent = new Intent(this, RecordActivity.class); countryIntent.setData(intent.getData()); startActivity(countryIntent); */ Toast.makeText(this,"click",Toast.LENGTH_LONG).show(); finish(); } 来自 searchable.xml 的 sn-p,其中搜索小部件支持操作视图
android:searchSuggestIntentAction="android.Intent.action.VIEW"
action_view 意图根本没有发送任何 Uri 我不知道原因,尽管 action_search 工作
【问题讨论】:
标签: android search-suggestion custom-search-provider