Re: [android-developers] Re: recommended icon size.

2011-08-24 Thread Subhalakshmi Kanakavel
Hi, If you have language specific icon, lets say your application name Hello written in spanish, french, Deutsch then you will be placing the icon in drawable-es, drawable-de, drawable-fr. If you don't have language specific icon then place in drawable-ldpi (low resolution) drawable-mdpi - middle

Re: [android-developers] Re: recommended icon size.

2011-08-24 Thread Aladin Q
Officially explained here: http://developer.android.com/guide/practices/ui_guidelines/icon_design.html and http://developer.android.com/guide/practices/ui_guidelines/icon_design_launcher.html ldpi: 32x32 mdpi: 48x48 hdpi: 72x72 xdpi: 96x96 (iirc) -- You received this message because you are subs

[android-developers] Re: recommended icon size.

2011-08-21 Thread Chris
>is there someone who can answer? >> In any case, the you can find full details on the developer website > >and download an icon pack containing templates to use as a base: >> >> http://developer.android.com/guide/practices/ui_guidelines/icon_desig... Peter told you the right answer, Google h

Re: [android-developers] Re: recommended icon size.

2011-08-21 Thread Kostya Vasilyev
Yes, if you have images that vary with language *and* with screen density, then yes, you will need directories for all the variations. Note that if you have any images that are shared among languages, you can place them into the language-neutral folders ( e.g. res/drawable-hdpi, without the la

[android-developers] Re: recommended icon size.

2011-08-21 Thread sblantipodi
is there someone who can answer? On Aug 17, 9:44 pm, sblantipodi wrote: > Hi, my apps uses really few images since I like to draw things using > canvas... > > At the mement I have only drawable, drawable-it, drawable-es, drawable- > de, drawable-fr folders. > > How can I manage the dpi? > I have

[android-developers] Re: recommended icon size.

2011-08-17 Thread sblantipodi
Hi, my apps uses really few images since I like to draw things using canvas... At the mement I have only drawable, drawable-it, drawable-es, drawable- de, drawable-fr folders. How can I manage the dpi? I have 5 drawable folders, should I create 15 folders to manage ldpi, mdpi, hdpi? On Aug 16,

[android-developers] Re: recommended icon size.

2011-08-15 Thread Matt Clark
The phone will only load that icon on an HDPI device. In your Res: folder there are 3 folders. drawable-ldpi drawable-mdpi drawable-hdpi, each with their own icon.png file. This is where the icons will be taken from depending on the screen resolution. -- You received this message because you a

[android-developers] Re: recommended icon size.

2011-08-15 Thread sblantipodi
thanks for the answer. Suppose that I use only one icon, a big 72x72 one. How this icon will be displayed on low density phones qith QVGA screens? Does android scale down icons also at level 4 (Android 1.6)? On Aug 13, 9:24 am, Peter Stacey wrote: > Depends on the screen size of the device if yo

[android-developers] Re: recommended icon size.

2011-08-13 Thread Peter Stacey
Depends on the screen size of the device if you want to go all the way and provide resources for each possible screen. Otherwise you can rely on Android to scale your resources to different screens. In any case, the you can find full details on the developer website and download an icon pack cont