[android-developers] custom adapter

2010-01-31 Thread Andrei
How do i set row height if text of some rows more than one line when writing custom ArrayAdapter? Thanks -- 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

Re: [android-developers] custom adapter

2010-01-31 Thread android beginner
I believe in your custom ArrayAdapter, you would have override getView. get the default text size, double the size and again set the text size. Hope this helps. On Mon, Feb 1, 2010 at 10:51 AM, Andrei gml...@gmail.com wrote: How do i set row height if text of some rows more than one line when

[android-developers] Custom Adapter

2009-12-07 Thread Business Talk
I have implemented a custom adapter the extends from the BaseAdapter and implements the getView method. It works fine except for one thing, not once do I get the convert View (a parameter to the getView method) that is not null ( that can be reused). Anybody experienced that same? -- You