我想在这里得到更多关于这篇文章的答案。
到目前为止,我可以从一个应用程序打开另一个应用程序,我打开的应用程序以窗口模式启动,但我无法看到主应用程序。但是我希望它们都在同一个屏幕上,并且能够同时工作。
注意:我正在打开的应用程序也支持多窗口和pip。
我尝试在清单中使用此选项:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.example.zobaer53.dead">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Dead"
android:resizeableActivity="true"
>
<activity android:name=".MainActivity"
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
android:launchMode="singleTask"
android:resizeableActivity="true"
android:supportsPictureInPicture="true"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>```
暂无答案!
目前还没有任何答案,快来回答吧!