Хотите ли вы добиться результата, подобного следующему GIF?
Я изменяю Intent.ActionVoiceCommand
на Intent.ActionWebSearch
Вот мой код.
private void Button1_Click(object sender, System.EventArgs e)
{
Intent intent = new Intent(Intent.ActionWebSearch);
intent.AddCategory(Intent.CategoryDefault);
string queryString = "Talk to my google action";
intent.SetClassName("com.google.android.googlequicksearchbox",
"com.google.android.googlequicksearchbox.SearchActivity");
intent.PutExtra("query", queryString);
intent.SetFlags(ActivityFlags.NewTask);
StartActivity(intent);
}