Utilice un android.intent.action.VIEW de la categoría android.intent.category.BROWSABLE .
Desde AndroidManifest.xml de la aplicación Photostream de Romain Guy ,
<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>
Una vez dentro, estás en la actividad , debes buscar la acción y luego hacer algo con la URL que te han entregado. El Intent.getData()
método te da 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);
}
}
Sin embargo, debe tenerse en cuenta que esta aplicación se está quedando un poco desactualizada (1.2), por lo que es posible que descubra que hay mejores formas de lograrlo.