एक android.intent.action का उपयोग करें । श्रेणी का देखें android.intent.category.BROWSABLE ।
रोमेन गाइ के फोटोस्ट्रीम ऐप के AndroidManifest.xml से ,
<activity
android:name=".PhotostreamActivity"
android:label="@string/application_name">
<!-- ... -->
<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:scheme="http"
android:host="flickr.com"
android:pathPrefix="/photos/" />
<data android:scheme="http"
android:host="www.flickr.com"
android:pathPrefix="/photos/" />
</intent-filter>
</activity>
एक बार जब आप गतिविधि में होते हैं , तो आपको कार्रवाई देखने की आवश्यकता होती है, और फिर आपके द्वारा सौंपे गए URL के साथ कुछ करें। Intent.getData()
विधि आप एक उरी देता है।
final Intent intent = getIntent();
final String action = intent.getAction();
if (Intent.ACTION_VIEW.equals(action)) {
final List<String> segments = intent.getData().getPathSegments();
if (segments.size() > 1) {
mUsername = segments.get(1);
}
}
हालांकि, यह ध्यान दिया जाना चाहिए कि यह एप्लिकेशन थोड़ा पुराना हो रहा है (1.2), इसलिए आप पा सकते हैं कि इसे प्राप्त करने के बेहतर तरीके हैं।