回答:
カテゴリandroid.intent.category.BROWSABLEの android.intent.action.VIEWを使用します。
Romain GuyのPhotostreamアプリの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)ため、これを実現するためのより良い方法があることに気付くかもしれません。
urlからのパラメータを自動的に解析するライブラリがいくつかあります。
といった
https://github.com/airbnb/DeepLinkDispatch
&&
https://github.com/mzule/ActivityRouter
後者は私が書いたものです。これは、常にStringではなく、指定された型にパラメーターを解析できます。
例
@Router(value = "main/:id" intExtra = "id")
...
int id = getIntent().getInt("id", 0);
private class MyWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
setUrlparams(url);
if (url.indexOf("pattern") != -1) {
// do something
return false;
} else {
view.loadUrl(url);
}
return true;
}
}