SMS または電子メールで送信された URL からアプリを開こうとしています。しかし、それは私のアプリケーションを開きません。
AndroidManifest
ファイルで使用したコードは次のとおりです。
<activity
android:name=".TestActivity"
android:label="@string/app_name" >
<intent-filter>
<data
android:host="http"
android:scheme="m.special.scheme" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>
これがURL
私がメールで渡したものです
http://m.special.scheme/other/parameters/here
私もこれを試しました
m.special.scheme://other/parameters/here
ただし、これは URL としてではなく、メール内の静的テキストとして表示されます。
助けて!!!