Each item in my ListView
containt an ImageView
and a TextView
, this will be filled with remote information.
I got an URL for t
I tried using fill_parent as height in ListView but i was unable to achieve it perfect but how ever i tried it by preventing creating convertViews if it its already exist. it works fine in my appoach.
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
if (convertView != null)
return convertView;
else {
//your code...
}
}