Android 图标与徽标

发布于 2024-11-25 00:34:01 字数 229 浏览 5 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

决绝 2024-12-02 00:34:01

ActionBar 将使用清单的 android:logo 属性,如果
提供了一个。这使您可以使用单独的可绘制资源
图标(启动器)和徽标(ActionBar 等)。

来源:Android:如何将 ActionBar“Home”图标更改为应用程序图标以外的图标?


setDisplayUseLogoEnabled()
允许在操作中使用替代图像(“徽标”)
栏,而不是默认的应用程序图标。徽标通常更宽,
代表应用程序的更详细的图像。当这是
启用后,系统使用为应用程序定义的徽标图像
(或单独的活动)在清单文件中,
android:标志属性。徽标将根据需要调整大小以适应
操作栏的高度。 (最佳实践是设计徽标
与您的应用程序图标大小相同。)

来源:http://developer. android.com/guide/topics/ui/actionbar.html#Style


要将图标替换为徽标,请在
带有 android:logo 属性的清单文件,然后调用
在您的 Activity 中设置 DisplayUseLogoEnabled(true)。

来源: http://developer.android.com/sdk/android-3.0.html #api

The ActionBar will use the android:logo attribute of your manifest, if
one is provided. That lets you use separate drawable resources for the
icon (Launcher) and the logo (ActionBar, among other things).

Source: Android: How to change the ActionBar "Home" Icon to be something other than the app icon?


setDisplayUseLogoEnabled()
Enables the use of an alternative image (a "logo") in the Action
Bar, instead of the default application icon. A logo is often a wider,
more detailed image that represents the application. When this is
enabled, the system uses the logo image defined for the application
(or the individual activity) in the manifest file, with the
android:logo attribute. The logo will be resized as necessary to fit
the height of the Action Bar. (Best practice is to design the logo at
the same size as your application icon.)

Source: http://developer.android.com/guide/topics/ui/actionbar.html#Style


To replace the icon with a logo, specify your application logo in the
manifest file with the android:logo attribute, then call
setDisplayUseLogoEnabled(true) in your activity.

Source: http://developer.android.com/sdk/android-3.0.html#api

过潦 2024-12-02 00:34:01

看来:

  • 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 8
  • using android:logo without android:icon does not set the application icon in the app drawer

My hunch is that "logo" refers to a company logo instead of an application icon.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文