我正在尝试在我的应用中支持分屏功能.
目标SDK目前是27
defaultConfig {
applicationId "com.myvestige.vestigedeal"
minSdkVersion 19
targetSdkVersion 27
versionCode 46
versionName "5.5"
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
并在应用程序标记的清单中将resizeableActivity添加到“true”.
android:name=".activity.MyApplication"
android:allowBackup="false"
android:icon="@drawable/newicon1"
android:label="@string/app_name"
android:largeHeap="true"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:replace="android:icon"
android:resizeableActivity="true">
当我用三根手指向下滑动(手动屏幕分割)时,此应用程序不支持“分屏或画中画”.
还附上我正在收到的错误消息的屏幕截图.我使用vivo-v9(8.1.0)进行测试,支持分屏.
请帮助我找到我做错的事.
谢谢