2011-05-23 51 views

回答

0

我想在你的应用程序的清单,你可以改变你的应用程序像这样的图标:

<application android:icon="@drawable/icon_marmara" > 
+0

NO,我不更改图标,但我的应用程序在Android Market的标志 – JMBise 2011-05-25 09:02:18

0

NO,不改变在Android Market中的图标,但我的应用程序的标识

0

好的,那么

<application android:logo="@drawable/sweet_logo"> 

0
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). 


    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.) 

    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. 

由于https://stackoverflow.com/questions/6735649/android-icon-vs-logØ