Twitist Forums
How do you create rich user interfaces on Android? For example like the Facebook and Twitter apps have? - Printable Version

+- Twitist Forums (http://twitist.com)
+-- Forum: Twitter forums (/forum-1.html)
+--- Forum: Twitter General help (/forum-6.html)
+--- Thread: How do you create rich user interfaces on Android? For example like the Facebook and Twitter apps have? (/thread-6584.html)



How do you create rich user interfaces on Android? For example like the Facebook and Twitter apps have? - John N - 10-12-2012 08:08 AM

I can only find tutorials to create basic user interfaces with simple list views, text boxes and buttons. I can only assume the Facebook and Twitter app use web views with HTML/CSS to create theirs?


- Edge - 10-12-2012 08:16 AM

Check google app inverter for Android
no programming req.


- yuckybear - 10-12-2012 08:16 AM

As a starting point, see this video: http://www.youtube.com/watch?v=M1ZBjlCRfz0

and read this article: http://android-developers.blogspot.com/2010/05/twitter-for-android-closer-look-at.html

Both are about Android UI patterns and both use the official Twitter app as an example. I don't think that app uses web views; it looks like it's mostly list views. I can't be sure without seeing the source code though (which I don't think they ever ended up releasing like they had planned).

You could check out the source code of the stock Android apps (Music Player, Email, Gallery, etc.) that come with the emulator to see how they do things. http://source.android.com/source/download.html

There are a lot of tutorials at http://developer.android.com

You could also use a visual program like Droid Draw http://www.droiddraw.org/

These visual layout programs still aren't the best, but they help in the beginning to see how XML layouts work and you can use the code generated to get you started.