3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

メモ : UserAgentを取得する

Posted at

WebViewから取得する

WebView webView = new WebView(getApplicationContext());
webView.getSettings().getUserAgentString()

実行結果

Mozilla/5.0 (Linux; Android 7.0; Nexus 5X Build/NBD90W; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/54.0.2840.85 Mobile Safari/537.36

SystemのPropertyから取得する

ソース

System.getProperty("http.agent")

実行結果

Dalvik/2.1.0 (Linux; U; Android 7.0; Nexus 5X Build/NBD90W)
3
5
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
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?