[android-developers] Re: custom adapter

2010-01-31 Thread Andrei
true is there example? On Jan 31, 7:01 pm, android beginner android.beginne...@gmail.com wrote: 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,

Re: [android-developers] Re: custom adapter

2010-01-31 Thread android beginner
This is just an example, which may not be applicable exactly in your case. public View getView(int position, View convertView, ViewGroup parent) { LayoutInflater inflater=context.getLayoutInflater();//initiliaze context in ur constructor View

[android-developers] Re: Custom Adapter

2009-12-07 Thread Dexter#39;s Brain
Yes of course, you can re-use it. If it is null, you have to inflate your layout if you have one, else you can re-use the same convertView. On Dec 7, 8:48 pm, Business Talk roman.businesst...@gmail.com wrote: I have implemented a custom adapter the extends from the BaseAdapter and implements