Re: [android-developers] removing item from ListView

2010-02-03 Thread Mark Murphy
> i want to remove the first line from my ListView. I use the > http://www.androidguys.com/2008/07/22/fancy-listviews-part-three/ > example from Mark Murphy. I've heard of that guy. > I have a ImageView and two TextViews in one List-row. > > My adapter class: > class MyAdapter extends ArrayAdapte

Re: [android-developers] removing item from ListView

2010-02-03 Thread Mike Novak
you need to invalidate the data in the adapter so the listview knows something has changed, this also implies that your adapter is configured to only display items associated with that data structure and not another one. Mike On Feb 3, 2010, at 3:40 PM, Stefan wrote: > Hi, > > i want to remov

[android-developers] removing item from ListView

2010-02-03 Thread Stefan
Hi, i want to remove the first line from my ListView. I use the http://www.androidguys.com/2008/07/22/fancy-listviews-part-three/ example from Mark Murphy. I have a ImageView and two TextViews in one List-row. My adapter class: class MyAdapter extends ArrayAdapter { Activity context;