tags:

views:

91

answers:

2

Hi, I notice that most android apps have some sort of standard in that they all look similar. Most of them have some sort of list of Text that are click-able. It's somewhat hard to explain but they look really nice and I was wondering is there some sort of tool or api that allows me to change the look of an app to make it similar? Or do I have to specifically specify the different fonts and different graphics? Like this:

http://www.androidandme.com/wp-content/uploads/2009/03/tmobapp1.png

I am new to Android programming so sorry if this sounds like a dumb question. Thank you.

+2  A: 

You can start by reading up on the UI design guidelines provided by google:

http://developer.android.com/guide/practices/ui_guidelines/index.html

nsr81
A: 

They are simply using the same standard Android UI elements provided to them via the framework. These views are readily available for you to use in Android. You can see some examples here.

In the case of your image example, they are using a TabWidget and a ListView.

Bryan Denny