[android-developers] Getting the application icon to show in the launcher

2011-01-24 Thread Bret Foreman
I created a simple app with a single activity and a 64X64 pixel png
icon. But I'm seeing the default Android icon instead of my drawable.
The icon is in res/drawable/icon.png and the manifest is as shown. I
also tried adding an icon attribute to the activity but that didn't
change - it's still just showing the default icon in the launcher. Any
idea what I might be doing wrong?


http://schemas.android.com/apk/res/android";
  package="com.speakez"
  android:versionCode="1"
  android:versionName="1.0">














-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Getting the application icon to show in the launcher

2011-01-24 Thread Kostya Vasilyev
Bret,

Not sure if this is it, but the standard icon size for mdpi is 48x48, not
64x64:

http://developer.android.com/guide/practices/ui_guidelines/icon_design_launcher.html#size5

The manifest looks fine.

-- Kostya

2011/1/24 Bret Foreman 

> I created a simple app with a single activity and a 64X64 pixel png
> icon. But I'm seeing the default Android icon instead of my drawable.
> The icon is in res/drawable/icon.png and the manifest is as shown. I
> also tried adding an icon attribute to the activity but that didn't
> change - it's still just showing the default icon in the launcher. Any
> idea what I might be doing wrong?
>
> 
> http://schemas.android.com/apk/res/android";
>  package="com.speakez"
>  android:versionCode="1"
>  android:versionName="1.0">
>
>
>
>
> android:name="android.intent.category.LAUNCHER" />
>
>
>
>
>
>
>  permission>
> 
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en