我有以下代码可以通过html链接打开活动。
<a href="intent://somedomain.com#Intent;scheme=http;package=com.package.open;end">Open application</a>
在清单中:
``
<activity android:name=".modules.splash.SplashActivity"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.View"/>
<category android:name="android.intent.category.DEAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:host="somedomain.com" android:scheme="http"/>
</intent-filter>
</activity>
``
问题是当我单击链接时,这会打开Play商店,而不是我的本地应用程序。
请帮帮我!