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

I've been trying to find out how to create an intent that will open the user's preferred browser without specifying the URL. I know how to open it by giving a specific URL like this:

Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setData(android.net.Uri.parse("http://www.google.com"));
context.startActivity(intent);

I don't want to open the browser to any page in particular, just the set homepage or whatever page the user was on last. I've thought about looking up the homepage set within the app but you can't do it with the default Browser app because it is private. Does anybody know of a way to do this?

share|improve this question

4 Answers

Here's how I did it:

String packageName = "com.android.browser"; 
String className = "com.android.browser.BrowserActivity"; 
Intent internetIntent = new Intent(Intent.ACTION_VIEW);
internetIntent.addCategory(Intent.CATEGORY_LAUNCHER); 
internetIntent.setClassName(packageName, className); 
mHomeActivity.startActivity(internetIntent);

If you have no homepage set, it'll open a blank page (at least in Android 2.1).

share|improve this answer

The homepage URL specified by the user will be stored in the preferences for whichever browser app they're using. With Androids 'sandbox' model for apps, you'll have no access to this unless the app has a Content Provider which allows access. In addition, the content provider will differ between the browser apps and you'll have a hard time covering the ones that do exist.

Have you tried opening to a web page which attempts to update the users homepage URL through the use of JavaScript?

share|improve this answer
No, I haven't tried this approach as I was mainly thinking about the use of intents. I'm not much of a web developer, but I'll have a look at it though! Are there any useful javascript API's that can go to the homepage? – developer_7 Jun 28 '10 at 17:59
I have looked for a way to retrieve a browser's homepage and for a way to go to a browser's homepage using javascript but haven't had any luck. I don't think it is possible to do this. Someone care to prove me wrong. – developer_7 Jun 29 '10 at 20:09

Long time coming, but looks like this functionality is available in API 15.

  Intent broswer = Intent.makeMainSelectorActivity(
         Intent.ACTION_VIEW, 
         Intent.CATEGORY_APP_BROWSER);

  startActivity(broswer);

Doc for makeMainSelectorActivity

share|improve this answer
            Uri uri = Uri.parse("www.google.com");
            Intent intent = new Intent(Intent.ACTION_VIEW,uri);
            // Create and start the chooser
            Intent chooser = Intent.createChooser(intent, "Open with");
            startActivity(chooser);

This code creates an intent to open user specified browser.

share|improve this answer

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.