0

我正在查看这些 Android 说明:http: //developer.android.com/guide/practices/ui_guidelines/icon_design_launcher.html#size

我制作了 4 种图像尺寸,但如何在 Android 清单文件中指定它们?我在代码库中的什么位置放置图像?

到目前为止我有这个

  <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" 
                android:theme="@style/CustomTheme" >

但不确定如何指定启动图标的具体大小以及何时需要显示。

谢谢!

4

3 回答 3

3

你不需要在清单文件上写任何东西。您需要将图像放在相关的可绘制文件夹中,例如:

res\drawable-hdpi\ic_launcher.png 
res\drawable-mdpi\ic_launcher.png  
res\drawable-ldpi\ic_launcher.png 
res\drawable-xhdpi\ic_launcher.png 
于 2012-04-21T17:16:30.253 回答
1

您必须将图像放在文件夹 res/drawable-hdpi、res/drawable-ldpi、res/drawable-mdpi 中,并在 Android Manifest 的以下代码中将名称“icon”更改为 your_name。

 <application android:icon="@drawable/icon" android:label="@string/app_name">
于 2012-04-21T17:17:53.563 回答
1

您不必在ManifestFile 中指定它,将它们放在和文件夹中drawable-hdpi,具体取决于分辨率,您可以再创建一个文件夹来支持新的高密度屏幕,例如 Google Nexusdrawable-mdpidrawable-ldpidrawable-xhdpi

于 2012-04-21T17:17:36.663 回答