Utiliser un Android.intent.action.VIEW de catégorie Android.intent.category.BROWSABLE .
De Romain Guy Photostream de l'application 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>
Une fois à l'intérieur, vous êtes dans le activité vous devez rechercher l'action, puis faire quelque chose avec l'URL qui vous a été remise. Le site Intent.getData()
vous donne un Uri.
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);
}
}
Il convient toutefois de noter que cette application commence à dater un peu (1.2) et qu'il existe peut-être de meilleurs moyens d'y parvenir.