嗨,大家好,
我正在开发一个应用程序,目前支持所有屏幕尺寸,根据我的要求,它只需要支持10英寸平板电脑吗?
为此,我创建了 layoutfloder,如下所示。在普通布局文件夹中,我没有创建任何 xml。
res/layout-xlarge/main_activity.xml
在 AndroidManifest.xml 中,我声明如下。
<supports-screens
android:anyDensity="false"
android:largeScreens="false"
android:normalScreens="false"
android:resizeable="false"
android:smallScreens="false"
android:xlargeScreens="true" >
</supports-screens>
但是在 xlargeDevices 应用程序运行良好。当我在模拟器中运行应用程序时,应用程序正在崩溃。作为资源未找到异常。
但最后我会得出结论,我的应用程序应该只在 Xlargescreens 中运行。