Link to Good Android UI Templates

I would like some links to get started with design patterns. My requirement is (at the initial stage). How to proceed with the development of a specific template, say, a custom ListView that can be used for different applications.

eg. Applications will call something like drawCustomizedListView (params ...), and my code will draw a list according to the provided parameters. This is especially useful when in all applications I have to create individual views.

My intention, I do not have to repeat the same code everywhere to perform a similar task.

Any links for the above requirement?

+6
android android-layout android-widget
source share
2 answers

Watch the official video on the Android UI design patterns Google I / O 2010 event from here:

http://www.google.com/events/io/2010/sessions/android-ui-design-patterns.html

You can also download the PDF file:

http://dl.google.com/googleio/2010/android-android-ui-design-patterns.pdf

And here you can find the final design patterns:

http://www.androidpatterns.com/

+11
source share

Create a package called com.yourcompany.android.ui.common and create all your common classes. Create it as a .jar file and use it as an external link in your Android projects.

+1
source share

All Articles