LoginSignup
13
14

More than 5 years have passed since last update.

AndroidでWeb検索のインテントを飛ばす

Posted at

Android 4.0以降なら多分Google Nowが起動して検索してくれる。 2.3とかはどうなるか知らない

Intent intent = new Intent(Intent.ACTION_WEB_SEARCH);
intent.putExtra(SearchManager.QUERY, text);
activity.startActivity(intent);

ExtraのキーにIntent.EXTRA_***じゃなくSearchManager.QUERYを使うところで詰まったので忘れた時のためにメモ。ちなみに中身は"query"

13
14
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
14