简体   繁体   English

Android Market图标应用程序

[英]Android market icon application

In the web android market, when I search my application I see my personal icon, but when I search my application from my phone my application has the default icon. 在Android网络市场中,当我搜索我的应用程序时,我会看到我的个人图标,但是当我从手机中搜索我的应用程序时,我的应用程序具有默认图标。 I would like that icon to be my launch icon. 我希望该图标成为我的启动图标。 What could I do? 我能做什么?

确保您的应用程序中每个可绘制资源文件夹中都有您的应用程序图标,这样每个屏幕上的屏幕密度都会显示其打开图标。.并确保在AndroidManifest中将图标从默认图标更改为所需的图标。

您的图标位于应用程序资源文件夹和AndroidManifest.xml中吗?

The launch icon and label is defined in the manifest in this line: 此行的清单中定义了启动图标和标签:

<application android:icon="@drawable/icon" android:label="@string/app_name">

You must put the launch icon in the res/drawable directory (preferably different resolutions under the different resolution directories). 您必须将启动图标放在res / drawable目录中(最好在不同的分辨率目录下使用不同的分辨率)。 So in the above example you must have an icon.png file in res/drawable, or an icon.png in each of res/drawable-hdpi, res/drawable-mdpi, res/drawable-ldpi. 因此,在上面的示例中,您必须在res / drawable中有一个icon.png文件,或者在res / drawable-hdpi,res / drawable-mdpi,res / drawable-ldpi中都有一个icon.png文件。 See http://developer.android.com/guide/practices/ui_guidelines/icon_design.html for the icon design guidelines. 有关图标设计指南,请参见http://developer.android.com/guide/practices/ui_guidelines/icon_design.html

嘿,您可以使用此程序更改Android的图像=> Android图标制作器

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM