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

Can anybody please guide me regarding how to launch my android application from the android browser?

share|improve this question
45  
Can you please accept one of the answers? – kilaka Aug 11 '11 at 10:13
1  
@Parimal has left the building... Only one question here worth 446 rep |) – RickyA Apr 12 at 19:59

6 Answers

Use an <intent-filter> with a <data> element. For example, to handle all links to twitter.com, you'd put this inside your <activity> in your AndroidManifest.xml:

<intent-filter>
    <data android:scheme="http" android:host="twitter.com"/>
    <action android:name="android.intent.action.VIEW" />
</intent-filter>

Then, when the user clicks on a link to twitter in the browser, they will be asked what application to use in order to complete the action: the browser or your application.

Of course, if you want to provide tight integration between your website and your app, you can define your own scheme:

<intent-filter>
    <data android:scheme="my.special.scheme" />
    <action android:name="android.intent.action.VIEW" />
</intent-filter>

Then, in your web app you can put links like:

<a href="my.special.scheme://other/parameters/here">

And when the user clicks it, your app will be launched automatically (because it will probably be the only one that can handle my.special.scheme:// type of uris). The only downside to this is that if the user doesn't have the app installed, they'll get a nasty error. And I'm not sure there's any way to check.


Edit: To answer your question, you can use getIntent().getData() which returns a Uri object. You can then use Uri.* methods to extract the data you need. For example, let's say the user clicked on a link to http://twitter.com/status/1234:

Uri data = getIntent().getData();
String scheme = data.getScheme(); // "http"
String host = data.getHost(); // "twitter.com"
List<String> params = data.getPathSegments();
String first = params.get(0); // "status"
String second = params.get(1); // "1234"

You can do the above anywhere in your Activity, but you're probably going to want to do it in onCreate(). You can also use params.size() to get the number of path segments in the Uri. Look to javadoc or the android developer website for other Uri methods you can use to extract specific parts.

share|improve this answer
1  
Thanks a ton for your prompt reply. But can you please tell me how to access the parameters after "my.special.scheme://". – Parimal Modi Jun 2 '10 at 15:46
2  
I've edited my answer to include instructions on how to extract the data from the Uri. Please mark this answer as accepted (only) if you consider it so by clicking the checkmark next to it. – Felix Jun 2 '10 at 19:58
1  
this is one of the most useful answers on SO about android webviews – SaKet Aug 24 '11 at 21:04
1  
what if the targeted android application is not installed? How to handle this. – Nemo Sep 14 '12 at 7:24
1  
@MisterSmith no, that is HTTP-specific. But, you can add data to your url, as GET parameters. – Felix Apr 19 at 11:38
show 6 more comments

Please see my comment here: Make a link in the Android browser start up my app?

We strongly discourage people from using their own schemes, unless they are defining a new world-wide internet scheme.

share|improve this answer
4  
Hackbod is one of the Google engineers behind the Android platform. It's probably a good idea to follow this advice. In fact, it seems like custom scheme support like this broke in Honeycomb. – nmr Oct 3 '11 at 22:18
1  
I believe that you have to make your own scheme if you want the URL to also work on iPhone (e.g., from a QR code). – Lawrence Kesteloot May 15 '12 at 21:46
7  
I can't be held responsible for limitations imposed on developers by iOS. ;) – hackbod May 15 '12 at 22:48
4  
held responsible? no. But you could take it into account since, regardless of if you like it or not, those limitations are imposed on many of your developers – ByteMe Jul 16 '12 at 23:56
1  
hackbod is answering a question specifically for Android. There's no mention of iOS, so no need to take it into account. – nilskp Jul 29 '12 at 20:56
show 1 more comment

In my case I had to set two categories for the <intent-filter> and then it worked:

<intent-filter>
<data android:scheme="my.special.scheme" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
</intent-filter>
share|improve this answer
Same here, needed to add the additional category. – KPK Feb 10 '12 at 16:16

There should also be <category android:name="android.intent.category.BROWSABLE"/> added to the intent filter to make the activity recognized properly from the link.

share|improve this answer
2  
For reference, adding CATEGORY_BROWSABLE means that "The target activity can be safely invoked by the browser to display data referenced by a link — for example, an image or an e-mail message." – greg7gkb Jul 9 '12 at 18:39
Is this an existing category or are you proposing a new one? – Anish Aug 13 '12 at 21:14
It exists. Apparently you should have separate website host in different intent-filter tags, or it causes problems. – NoBugs Oct 13 '12 at 20:58

Hey I got the solution. I did not set the category as "Default". Also I was using the Main activity for the intent Data. Now i am using a different activity for the intent data. Thanks for the help. :)

share|improve this answer
Sounds unlikely (although I recognize that this is an old question and maybe things have changed.) From developer.android.com/guide/components/intents-filters.html#ifs "For an intent to pass the category test, every category in the Intent object must match a category in the filter. The filter can list additional categories, but it cannot omit any that are in the intent." – Noach Apr 18 at 15:21

You need to add a pseudo-hostname to the CALLBACK_URL 'app://' doesn't make sense as a URL and cannot be parsed.

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.