[android-developers] how to use common baseadapter class for all listviews?

2011-08-10 Thread Hitendrasinh Gohil
Hi, can anyone tell me how to make common base adapter class to use with different listviews? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

[android-developers] how to use common baseadapter class for all listviews?

2011-08-11 Thread Hitendrasinh Gohil
Hi, Any one can give idea to make a common base adapter class for number of listviews? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group

Re: [android-developers] how to use common baseadapter class for all listviews?

2011-08-10 Thread Mark Murphy
On Tue, Aug 9, 2011 at 2:26 AM, Hitendrasinh Gohil wrote: > can anyone tell me how to make common base adapter class to use with > different listviews? public class CommonBaseAdapter extends BaseAdapter { // application-specific logic goes here } -- Mark Murphy (a Commons Guy) http://common

Re: [android-developers] how to use common baseadapter class for all listviews?

2011-08-11 Thread TreKing
On Wed, Aug 10, 2011 at 2:32 AM, Hitendrasinh Gohil < hitendrasin...@gmail.com> wrote: > Any one can give idea to make a common base adapter class for number of > listviews? > Mark gave you exactly what you asked for. -