使用mdpi ldip hdpi xdpi的android图像大小

使用mdpi ldip hdpi xdpi的android图像大小,android,Android,我为每个文件夹放置了4个图像,分别是mdpi、ldpi、hdpi和xdpi,比例为3:4:6:8 现在我需要对androidmanifieast.xml文件或应用程序进行任何更改,根据设备的屏幕分辨率自动选择需要从哪个文件夹中拾取正确的图像 多谢各位 Now I need to make any changes in androidmanifieast.xml 您必须在manifest.xml文件中添加此代码 <supports-screens android:anyDens

我为每个文件夹放置了4个图像,分别是mdpi、ldpi、hdpi和xdpi,比例为3:4:6:8

现在我需要对androidmanifieast.xml文件或应用程序进行任何更改,根据设备的屏幕分辨率自动选择需要从哪个文件夹中拾取正确的图像

多谢各位

Now I need to make any changes in androidmanifieast.xml 
您必须在manifest.xml文件中添加此代码

<supports-screens 
    android:anyDensity="true" 
    android:largeScreens="true"
    android:normalScreens="true" 
    android:smallScreens="true"
    android:resizeable="true"/> 


应用程序会根据屏幕分辨率自动拾取正确的图像。

您的问题是什么?不明白。@ChiragRaval我想使用hdpi,ldpi xdpi文件夹,我把我想使用的图像放在那里。步骤是什么?