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)