0

我的布局结构如下:

res/layout-small-ldpi res/layout-ldpi res/layout-mdpi res/layout-large-mdpi res/layout-hdpi。

我有以下分辨率的图像:

240x320 320x480 480x800 1024x600

但我不知道将这些图像放在哪里可以绘制。请帮忙。

4

2 回答 2

2

android 文档提供了有关支持多种屏幕尺寸的指南:

http://developer.android.com/guide/practices/screens_support.html

于 2013-08-12T12:10:38.897 回答
2

你的 res 命名文件夹中有四种类型的 Drawable 文件夹,所以你必须放。

1) for 240x320 image put it to in drawable-ldpi or simple drawable folder.
2) for 320x480 image put it to in drawable-mdpi 
3) for 480x800 image put it to in drawable-hdpi 
4) for 1024x600image put it to in drawable-xhdpi.
于 2013-08-12T12:11:42.683 回答