操作视图意图不起作用
Action view intent does not work
Action view Intent for Search widget 不发送 Intent
我正在使用 Toast 来显示当用户从快速搜索框中的建议中选择项目时是否发送意图
这是在可搜索的 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 的片段,其中搜索小部件支持 Action View
android:searchSuggestIntentAction="android.Intent.action.VIEW"
根本没有从 action_view
意图发送 Uri 我不知道原因,尽管 action_search 工作
意图操作名称区分大小写。使用这个:
android.intent.action.VIEW
Action view Intent for Search widget 不发送 Intent 我正在使用 Toast 来显示当用户从快速搜索框中的建议中选择项目时是否发送意图
这是在可搜索的 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 的片段,其中搜索小部件支持 Action View
android:searchSuggestIntentAction="android.Intent.action.VIEW"
根本没有从 action_view
意图发送 Uri 我不知道原因,尽管 action_search 工作
意图操作名称区分大小写。使用这个:
android.intent.action.VIEW