因此,我正在尝试从外部网址启动我的应用。我已经读到,这是通过Deeplink完成的,清单文件中包含以下内容:
<activity android:label="@string/title_activity_login"
android:name="hello.world.LoginActivity"
android:launchMode="singleTop"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden">
<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="https"
android:host="hello.world.io/deeplink"
android:pathPrefix="/test/v2"
/>
</intent-filter>
</activity>
但是我似乎无法设计出可以启动应用程序或直接进行该活动的网址。
谢谢
尝试使用此代码将对您有所帮助