搜索小部件的操作视图意图不发送意图我正在使用 Toast 来显示当用户从快速搜索框中的建议中选择项目时是否发送意图
这是在可搜索活动中收到意图的片段
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 的片段,其中搜索小部件支持操作视图
android:searchSuggestIntentAction="android.Intent.action.VIEW"
根本没有从action_view
意图发送 Uri 我不知道原因,尽管 action_search 工作