tags:

views:

419

answers:

3

Hi,

I am an experienced iphone developer and recently taken the plunge into android development as well. i came across this app and i wonder how was it developed on android (Cause it looks so much like an iphone app), see link below http://lh5.ggpht.com/_63_i7B_SEMw/SmhfwhjWx2I/AAAAAAAAAI8/OoA40e42clo/s400/NYTimes-app-comes-to-android-market.jpg

anyone have any idea how to accomplish that type of look on android

+1  A: 

Hello.

This app obviously uses customized ListViews, ButtonView on the bottom of the screen.

Theses are pretty much standard and common in android apps.

Dullahx
Is there a tutorial you can point me to which describes how to customize ListView and ButtonView
Monty
I think he means `Button`, there is no `ButtonView`. A Button is just a text view that uses stateful drawables. You may want to refer to my article about Android styling, which I posted as an answer.
Matthias
can you give me a link to your styling article i cant seem to find it
Monty
woops, yeah i meant a Button, there is no ButtonView :p
Dullahx
A: 

Its in the documentation how to create custom components

http://developer.android.com/intl/fr/guide/topics/ui/custom-components.html

Donal Rafferty
+2  A: 

That's just a matter of styling after all. In general, I would consider it to be discouraged to make your Android app look like an iPhone app. Every platform has its own UX standards, and Android's standards are different from iPhone's. That quite obviously also reflects in the user interface.

Anyhow, you may want to read this article about Android themes and styles. It should get you going with defining own widget styles and stateful drawables to implement custom buttons.

Matthias