tags:

views:

52

answers:

1

Can I find out from my Android app, what is the browser's user agent string?

+2  A: 
String userAgent = System.getProperty("http.agent");
radek-k
That's what I needed, thanks!
fhucho