I’m a newie in Android apps and now I’m stuck triyng to get something like this layout…
http://cloud.addictivetips.com/wp-content/uploads/2012/04/Google-Drive-for-Android-Home.jpg
I’ve started doing with RelativeLayout, but I don’t know how to do this cute buttons. I’ve use buttons with background images with no success. I’ve seen there’s antoher layouts… What would you use to achieve these one? Or where can I follow a good example talking about layouts and buttons with different examples, because I couldn’t find anything interesting about 🙁
Thanks in advance and sorry about my english
It sounds like you basically have two questions:
To attempt to answer the first question, there are numerous ways to create a layout such as the one you presented. Since you mention that you are a “newbie” I will present you with one simple way, and that is to use a linear layout.
The key parts here are:
Another important part of that layout is Action Bar. For that you can use the following reference: Action Bar Reference on developer.android.com
The regarding the second question, the icon/buttons can be attained in the download section of developer.android.com. Of course you in developing applications it will become necessary to use a graphics program to design your own icons and buttons.
Hope this helps you get going in the right direction.