Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi guys i have been trying to launch the application from a link on email or from a posting on some social networking websites. I know this question has already been raised by some friends but still the problem that i face is that in some device or some gmail application on the android don't show the anchor tags or link that i have specified.

The intent-filter that i set to my activity is below:

 <action android:name="android.intent.action.VIEW" />
 <category android:name="android.intent.category.DEFAULT" />
 <category android:name="android.intent.category.BROWSABLE" />
 <data android:scheme="myappname" />

And i am sending the email with this anchor tag

myappname://processtobedone/?id=1

It works fine with the email application that i have on Huewai device but in device's default gmail application it is not showing it has an link and in some devices by default it appends https: as suffix for the tag and launches the browser.

Hope you could understand my problem and hoping for the better response.

Thank in Advance.

share|improve this question

2 Answers

Instead of using a custom scheme, you can have an <intent-filter> that identifies a URL that you control:

        <intent-filter>
            <action android:name="android.intent.action.VIEW"/>

            <category android:name="android.intent.category.DEFAULT"/>
            <category android:name="android.intent.category.BROWSABLE"/>

            <data
                android:host="www.this-so-does-not-exist.com"
                android:path="/something"
                android:scheme="http"/>
        </intent-filter>

Then, links to http://www.this-so-does-not-exist.com/something will bring up your app (in a chooser, along with the Web browse) on devices that have your app, and will bring up your Web page on devices that do not have your app.

share|improve this answer
Thanks and sorry for delayed reply @CommonsWare. I would try this. – Dinash Feb 20 at 7:17
Hi Thanks for you answer and it works fine on most device but not in all as it is not working with HTC EVO 4G. Whenever i click on the link it directly opens up the browser and i am sure of why it is so. Also checked whether the any defaults being set and it is not set either. – Dinash Feb 26 at 6:12
@Dinash: This approach may not work on various US-shipped HTC devices due to a workaround stemming from an import ban obtained by Apple. See commonsware.com/blog/2012/07/23/… and commonsware.com/blog/2012/07/24/… – CommonsWare Feb 26 at 12:52

Make a real link (http:) that goes a website you control, such as a static website on amazon s3, use the javascript on that site to detect an android user agent and then redirect to a link with the anchor tag.

share|improve this answer
You don't even need the JavaScript. If the <intent-filter> has the Web page URL instead of the custom scheme, the user can choose to open the app directly. – CommonsWare Feb 19 at 14:49
@CommonsWare ah, thats how instagram must work. I always wondered how that was a choice – CQM Feb 19 at 15:01

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.