我正在尝试使用清单文件中的应用程序标记内的android:resizeableActivity="false"
禁用多窗口支持。但它显示了这个警告 -
Attribute resizeableActivity is only used in API level 24 and higher (current min is 15)
然后我使用了“使用工具抑制:TargetApi属性”。这给了我RuntimeException: Worker exited due to exception:
我现在该怎么办?
答案 0 :(得分:6)
Attribute resizeableActivity is only used in API level 24 and higher (current min is 15)
您可以放心地忽略该警告,因为Multi Window Support仅适用于Android 7.0(API级别24)及更高版本。在较低版本中,此行android:resizeableActivity="false"
将被忽略。