I wanted some resources to learn how to design for android ?
What are the dimensions we need to have ?
Can we have custom dialog and alert box design ?
Can you guide me to some resources like articles or books etc.
I wanted some resources to learn how to design for android ?
What are the dimensions we need to have ?
Can we have custom dialog and alert box design ?
Can you guide me to some resources like articles or books etc.
checkout this site http://www.androidpatterns.com/ .This has got guidelines for common UI design patterns
Here are some helpful links:
To learn about different layout types. Personally I recommend RelativeLayout. http://developer.android.com/guide/topics/ui/layout-objects.html
As for dimensions: What is the difference between "px", "dp", "dip" and "sp" on Android?
As for custom dialogs: http://www.helloandroid.com/tutorials/how-display-custom-dialog-your-android-application
Good luck!
The Wrox book is a good one for getting to know how to make applications and make full use of the functionalities of the android UI design.
There is this online tutorial also it has lot of functionalities with examples
http://www.vogella.de/articles/Android/article.html
I would like to what exactly you are targeting at
Yes you can create custom dialogs and alert boxes in android
I wanted some resources to learn how to design for android ?
The website developer.android.com is your friend.
What are the dimensions we need to have ?
Android comes in all sorts of form factors, so you should design your UI in a way that it can be scaled to any form factor. (So, for example, you shouldn't use absolute positioning or absolute dimensions).
Can we have custom dialog and alert box design ?
Yes, you can use custom UI elements. However, it is often a good idea to reuse standard UI elements in order to present the user with something that they are already accustomed to using.