I am using custom adapter for a listview and i need to get the listitem height for displaying the listview in a scrollview. I tried to do that in a normal listview with simple adapter. I am able to get the adapter using [listView.getAdapter()] but in case of customadapter unable to get the adapter or height of the listitem. How can i make it possible. And also unable to have listitem click.

This is my reffered link for listview in scrollview: Click here

The code of the adapter i have used is:

CustomAdapter-Code

link|improve this question

69% accept rate
There is a similar question, maybe this helps for you! – Caumons Feb 3 at 9:52
feedback

1 Answer

up vote 1 down vote accepted

Because [Null pointer exception]

I guess change here,

int height = convertView.getHeight(); >> int height = vi.getHeight();

p.s. just guess, sorry for my bad if it doesn't help

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.