Androidmanifest文件:
<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:host="**.**.com" android:scheme="http"/>
<data android:host="**.**.com" android:scheme="https"/>
</intent-filter>
我尝试使用简短的动态链接启动应用。
它启动应用程序没有任何问题,但当我对应用程序进行后台处理时,它会从最近的应用程序中消失。这是预期的行为吗?