This is probably a dumb question but I can't find it anywhere... Which icon is used in your marketplace listing? Is it always the application android:icon="@drawable/icon" setting from your manifest file or can you have a launch icon different from your marketplace listing?
+2
A:
Android Market uses application icon, but you can have different launch icon if you assign another one to your default (starting) activity.
tomash
2010-06-28 09:27:51
+1
A:
I think an example will do:
// app-wide, incl. Android Market
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
>
// launcher only
<activity android:name=".activity.Launcher"
android:label="@string/launcher_title"
android:icon="@drawable/launcher_icon"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
alex
2010-06-28 12:03:47