我正在尝试向我的应用添加深层链接,用户执行了一些操作,然后浏览器启动,然后通过单击按钮返回到应用,问题是我需要恢复活动而不是开始再来一次。我通过adb shell中的脚本测试了深层链接,该链接可以正常运行,但不能从浏览器运行。
这是我的代码的样子:
adb shell am start -W -a android.intent.action.MAIN -d "me://test" com.example.myapp
adb脚本:
<a href="intent://test/#Intent;scheme=me;action=android.intent.action.MAIN;package=com.example.myapp;end">Back To App</a>
HTML:
{{1}}
答案 0 :(得分:1)
使用“ singleInstance”向此活动添加launchMode
<activity
android:name=".activity.MapsActivity"
android:label="@string/title_activity_maps"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="me"
android:host="test" />
</intent-filter>