如果您想为不同的设备创建 1 个应用程序,那么您必须使用 sdk 中定义的 android 不同的文件夹
例如
drawable-ldpi - to place the images for the low screen density devices(240*320)
drawable-mdpi - to place the images for the middle screen density devices(320*480)
drawable-hdpi - to place the images for the high screen density devices(480*800)
drawable-xhdpi - to place the images for the extra high screen density devices (above 480*800)
如果您想为平板电脑创建应用程序 drawble-sw720dp - 为平板电脑设备放置图像(7“)
drawable 用于放置图像。您必须为不同的可绘制文件夹创建布局
layout-ldpi - to place the layout for the low screen density devices(240*320)
layout-mdpi - to place the layout for the middle screen density devices(320*480)
layout-hdpi - to place the layout for the high screen density devices(480*800)
layout-xhdpi - to place the layout for the extra high screen density devices (above 480*800)
android根据设备密度自动从应用程序中获取图像和布局。但为此你必须定义
<supports-screens android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true" />
以便为多种屏幕分辨率设备开发应用程序。