0

搜索小部件的操作视图意图不发送意图我正在使用 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 工作

4

1 回答 1

1

意图操作名称区分大小写。用这个:

android.intent.action.VIEW
于 2015-06-22T09:25:25.920 回答