Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reference for good Android UI design patterns

I would like to get some links for getting started with design patterns.My requirement is , (at Initial stage) How to go about developing a particular pattern , say customized ListView which can be shared across applications .

e.g. Applications will call something like drawCustomizedListView(params...) and my code will draw the listview according to the parameters supplied. This is particularly useful when across the applications I have to draw customized views.

My intention is, I should not repeat the same code everywhere for doing similar task.

Any references for the above requirement ?

like image 854
sat Avatar asked Dec 28 '10 07:12

sat


2 Answers

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

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

Also you can download PDF file of this:

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

And here you can find ultimate design patterns:

http://www.androidpatterns.com/

like image 197
Vikas Patidar Avatar answered Oct 15 '22 09:10

Vikas Patidar


Create a package with a name such as com.yourcompany.android.ui.common and create all of your common classes in there. Build it as a .jar file and use it as an external reference in your android projects.

like image 35
Squonk Avatar answered Oct 15 '22 09:10

Squonk