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.

I need to open the my application from browser when some pattern matching url come,I have implement using Intercepting links from the browser to open my Android app .It is used for url only can it possible to open the app.I want to app when browser find the string like appname://id=102.

Thank you.

EDIT: please check out this code that i have use

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

                 <data 
                  android:scheme="appname"
                />      
    </intent-filter>
share|improve this question

1 Answer

up vote 1 down vote accepted

You need to add an intent filter for an activity that contains a data tag. In the data tag you can set the scheme that you want to listen for. Something like this:

<intent-filter>
    <data android:scheme="appname" />
</intent-filter>
share|improve this answer
i have done it but it is not working – Sameer Z. Aug 12 '11 at 4:58

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.