如果应用程序已经被深度链接打开,那么深度链接就不起作用了。
但是,如果我打开应用程序不触发深度链接,像点击应用程序图标打开应用程序。之后触发深度连接总是有效的。
详情如下:
所以我在 AndroidManifest 中设置了这样的活动,即 LaunchActivity。
<activity
android:name="some.package.name.LaunchActivity"
android:screenOrientation="portrait"
android:theme="@style/Theme.SomeTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<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="dlscheme" android:host="dlhost" />
</intent-filter>
</activity>
在 LaunchActivity 中,我将在 onCreate ()中打印一个日志,以指示它已经存在。
我用过
adb shell am start -W -a android.intent.action.VIEW -d "dlscheme://dlhost/param" some.package.name
来测试深层联系。
应用程序关闭后,我使用了上面的命令。它可以打开应用程序并路由到正确的活动,没有问题。 并有以下日志。
adb shell am start -W -a android.intent.action.VIEW -d "dlscheme://dlhost/param" some.package.name
Starting: Intent { act=android.intent.action.VIEW dat=dlscheme://dlhost/param pkg=some.package.name }
Status: ok
Activity: some.package.name/.activity.LaunchActivity
ThisTime: 898
TotalTime: 898
WaitTime: 919
Complete
但是,如果我再次输入相同的命令,而不关闭应用程序。 它只会打开应用程序,但不会打开正确的活动,并产生以下日志。
adb shell am start -W -a android.intent.action.VIEW -d "dlscheme://dlhost/param" some.package.name
Starting: Intent { act=android.intent.action.VIEW dat=dlscheme://dlhost/param pkg=some.package.name }
Warning: Activity not started, its current task has been brought to the front
Status: ok
Activity: some.package.name/.activity.LaunchActivity
ThisTime: 0
TotalTime: 0
WaitTime: 6
Complete
用这条额外的线
Warning: Activity not started, its current task has been brought to the front
我实际上也在一个网站上尝试过,使用了这个 chrome 意图:
intent://dlhost/param#Intent;scheme=dlscheme;package=some.package.name;end
它也会表现出同样的行为。