Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to make changes to default Android Home Screen (like changing cell dimensions, number of elements per row etc) and wondering if there any way I can change apps icon sizes placed on the home screen?

I know that platform takes care of picking up the right dimension image from ldpi (36x36), mdpi (48x48) or hdpi (72x72) directory based on the screen density, but I would like to know if there is any way to increase the icon sizes when application icons are put on the Home Screen irrespective of the screen density?

share|improve this question
Are you developing a custom home screen? Or just trying to configure your phone? – Cheryl Simon Feb 10 '11 at 0:50
There is definitely a way to do it. I'm not sure how it is done though. Check out 'Launcher Pro' on the Market it allows you to change the number of rows and columns of icons, which results in them being bigger or smaller. – FoamyGuy Feb 10 '11 at 1:30

1 Answer

but I would like to know if there is any way to increase the icon sizes when application icons are put on the Home Screen irrespective of the screen density ?

There is no "Home Screen". There are dozens upon dozens of home screen apps. Some ship with the device. Some, like the Launcher Pro mentioned in a comment, are apps available from the Android Market.

There is no general-purpose, cross-home-screen way to do what you want, and I am not aware of any home screen app with an API.

share|improve this answer
I am not sure if I made it clear, but Mayra is right. I am trying to develop a custom home screen which I can put it on my device. – Dev Feb 10 '11 at 4:40
I was able to make changes to number of columns and elements per row and cell dimensions and all that but not yet able to find how can I change the Apps icons sizes to be placed on this Custom Home Screen app. Right now icon sizes are kind of standard based on screen density. If the screen is low density, Application icon from drawable-ldpi is used and if screen density is high, icon from drawable-hdpi is used. I want to know if there is any way I can increase or decrease App icon size before placing them on the custom home screen ? – Dev Feb 10 '11 at 4:46
@Dev: "I am trying to develop a custom home screen which I can put it on my device." -- ah! That's kinda important information! :-) You can't change the density. However, they're your ImageView widgets, so you can size them however you want. Android will be forced to scale them, and it won't look quite as good. – CommonsWare Feb 10 '11 at 12:08
I was able to increase the icon sizes by increasing 42x42 area inside the home screen cell grid, in which icon is placed and centered. Instead of using 42 dpi which is the default one for medium density, I increased it to 76 dpi. Android Framework takes care of the rest. It scales the icon to increased size. Now the issue is while scaling it uses 9 patch scaling where it scales the alpha transparent area around the actual icon image and not the icon picture itself. I am trying to find out how Home Screen request for the app icon when app is dragged on the home screen ? – Dev Feb 11 '11 at 16:01
It must be requesting app icon based on screen density...not sure if all this is done by the framework. – Dev Feb 11 '11 at 16:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.