ここに記載されているように、アプリを起動しようとしています: Launch custom android application from android browser
I've created intent-filter
in my manifest:
<activity
android:name=".ui.BaseActivity"
android:label="@string/app_name"
android:launchMode="singleTop"
android:configChanges="orientation|keyboard|keyboardHidden|screenSize">
<intent-filter>
<data android:scheme="http" android:host="somesite.com"/>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
しかし、ストックブラウザ「somesite.com」と入力すると、アプリを起動する代わりに「somesite.com」が読み込まれます。どうしたの?
PS: このhttps://stackoverflow.com/a/13019256/1548085は役に立たない