Android 图标与徽标
Android Manifest 的
标记包含 。您的应用程序的图标和徽标有什么区别?是否纯粹用于市场?
The <application>
tag for the Android Manifest contains a logo attribute which I have never seen before. What is the difference between your application's icon and its logo? Is it used purely for market?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来源:Android:如何将 ActionBar“Home”图标更改为应用程序图标以外的图标?
来源:http://developer. android.com/guide/topics/ui/actionbar.html#Style
来源: http://developer.android.com/sdk/android-3.0.html #api
Source: Android: How to change the ActionBar "Home" Icon to be something other than the app icon?
Source: http://developer.android.com/guide/topics/ui/actionbar.html#Style
Source: http://developer.android.com/sdk/android-3.0.html#api
看来:
android:logo
在 API 级别 10 中可用,但在 API 级别 8 中不可用,android:logo
而不使用android:icon
则不可用在应用程序抽屉中设置应用程序图标我的直觉是“徽标”指的是公司徽标而不是应用程序图标。
It appears that:
android:logo
is available in API Level 10, but not API Level 8android:logo
withoutandroid:icon
does not set the application icon in the app drawerMy hunch is that "logo" refers to a company logo instead of an application icon.