我正在查看这些 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" >
但不确定如何指定启动图标的具体大小以及何时需要显示。
谢谢!