Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to retrieve Browser's user-agent without having a WebView in activity?

I know it is possible to get it via WebView:

WebView view = (WebView) findViewById(R.id.someview);
String ua = view.getSettings().getUserAgentString() ;

But in my case I don't have/need a webview object and I don't want to create it just for retrieving user-agent string.

share|improve this question

4 Answers

up vote 10 down vote accepted

If you don't have one you can try taking it like this

String ua=new WebView(this).getSettings().getUserAgentString();

Edit-

The doc for getUserAgentString() says

Return the WebView's user-agent string.

So i don't think you can get it unless you declare one. Some one correct me if i am wrong

share|improve this answer
Thanks, it works. Would be nice to get around it without creating an object, but seems it is not really possible... – Laimoncijus Sep 2 '10 at 14:24

I used to use solution proposed by DeRagan. But it turned out that creating a single WebView instance starts a thread "WebViewCoreThread" which stays on the background until application is terminated by the system. Maybe it doesn't consume too much resources but I don't like it anyway. So I use slightly different method now, which tries to avoid WebViewCoreThread creation:

// You may uncomment next line if using Android Annotations library, otherwise just be sure to run it in on the UI thread
// @UiThread 
public static String getDefaultUserAgentString(Context context) {
  if (Build.VERSION.SDK_INT >= 17) {
    return NewApiWrapper.getDefaultUserAgent(context);
  }

  try {
    Constructor<WebSettings> constructor = WebSettings.class.getDeclaredConstructor(Context.class, WebView.class);
    constructor.setAccessible(true);
    try {
      WebSettings settings = constructor.newInstance(context, null);
      return settings.getUserAgentString();
    } finally {
      constructor.setAccessible(false);
    }
  } catch (Exception e) {
    return new WebView(context).getSettings().getUserAgentString();
  }
}

@TargetApi(17)
static class NewApiWrapper {
  static String getDefaultUserAgent(Context context) {
    return WebSettings.getDefaultUserAgent(context);
  }
}

It creates WebSettings instance directly using package-visible constructor and if that is not available for some reason (e.g. due to API changes in future Android versions) - silently falls back to "WebView-like" solution.

UPDATE

As pointed by @Skywalker5446, starting from Android 4.2/API 17, there is a public static method to get default user agent value. I've updated my code to use that method on the supported platforms.

share|improve this answer
1  
This method will fail on Android 4.2, WebSettings is now abstract, though there is a WebSettingsClassic, calling private APIs is always not an elegant way, it will just fail in future and you can not fix it without an upgrade. – neevek Nov 15 '12 at 6:46
1  
In Android 4.2/API 17, there is a public static method to get this value: WebSettings.getDefaultUserAgent(Context), so you could add a check for that API level as well to this trick. – Skywalker5446 Jan 8 at 21:26
@Skywalker5446 Thanks for useful info, I'll update my answer accordingly. – Idolon Jan 9 at 14:49

There is a much simpler way if you are on Android 2.1 or above.

There is a system property called http.agent, which can be used to retrieve the User-Agent string.

String userAgent = System.getProperty("http.agent");

See Programmatically get User-Agent String for more details.

share|improve this answer

Thanks to Idolon's answer my app could process this in the background.

But somehow on HTC Inspire 4G from AT&T that runs 2.3.3, it goes to the catch statement and it can be no longer run on the background thread. My solution for this is the following:

public static String getUserAgent(Context context) {
    try {
        Constructor<WebSettings> constructor = WebSettings.class.getDeclaredConstructor(Context.class, WebView.class);
        constructor.setAccessible(true);
        try {
            WebSettings settings = constructor.newInstance(context, null);
            return settings.getUserAgentString();
        } finally {
            constructor.setAccessible(false);
        }
    } catch (Exception e) {
        String ua;
        if(Thread.currentThread().getName().equalsIgnoreCase("main")){
            WebView m_webview = new WebView(context);
            ua = m_webview.getSettings().getUserAgentString();
        }else{
            mContext = context;
            Thread thread = new Thread(){
                public void run(){
                    Looper.prepare();
                    WebView m_webview = new WebView(mContext);
                    mUserAgent = m_webview.getSettings().getUserAgentString();
                    Looper.loop();
                }
            };
            thread.start();
            return mUserAgent;
        }
        return ua;
    }
}

(suppose you have mContext and mUserAgent in the field)

share|improve this answer
You probably want to either quit() the Looper and join() the thread or use wait() and notify()/notifyAll() so that mUserAgent is guaranteed to be modified. Currently, the method might return before the child thread updates mUserAgent. – Anonymous Jun 14 '12 at 22:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.