itsaboutcode
itsaboutcode

Reputation: 25099

What is the best approach to make android apps?

I was just reading a tutorial at

http://courses.coreservlets.com/Course-Materials/pdf/android/Android-Programming-Basics.pdf

It has 3 ways in which android applications can be build

• Java-based

• XML-based

• Hybrid

I was wondering if I can know which is the best way to go especially if project is small or big?

Upvotes: 0

Views: 1056

Answers (2)

kosa
kosa

Reputation: 66657

Most of the apps need Hybrid approach. You define layouts in XML, activities using Java. Sometimes even you may end up coding UI in Java. So, I would vote for Hybrid approach.

Upvotes: 3

Liam W
Liam W

Reputation: 1163

I would go for the hybrid approach, as that is the approach used in the eclipse IDE, which android favours you use when making apps.

Upvotes: 0

Related Questions