0

我有一个为我的应用程序制作的背景。但我不确定将它放在哪个文件夹中,以及它的大小?

我应该在 ldpi 中保存哪种尺寸的背景,mdpi、hdpi 和 xhdpi 使用哪种尺寸?

我需要每个文件夹中的特定尺寸,以适应所有屏幕尺寸?

4

2 回答 2

1

You could put in any folder, the eclipse IDE will pick up automatically no matter which folder your place your background. Recommended for ldpi is 36x36, mdpi = 48x48, hdpi = 72x72 and xhdpi = 96x96. Just check the default icon in you res folder. For more info, view Difference between each resource folders

于 2012-10-13T15:03:19.403 回答
1

拥有文件夹 ldpi(mdpi、hdpi 和 xhdpi 的大小)的基本目的是将图片和图标等可绘制资源放在 ldpi 中,mdpi、hdpi 和 xhdpi 的大小。它们的对应尺寸从低到特大的比例范围为

36:48:72:96

如果您指的是 ypur 应用程序的背景。实际上,您可以以编程方式设置 hr 背景颜色或固定在 xml 中。这适用于所有决议。

于 2012-10-13T15:04:01.290 回答