Skip to content Skip to sidebar Skip to footer

Can't Add Item To Custom Arrayadapter

I'm trying to get this to add and nothing happens at all. I have made adjustments to my arrrayadapter and it should work. public class TaskTracker extends Activity { /** Called wh

Solution 1:

You didn't set content for your rows in the listview -_-!

At least you should do this inside getView:

String taskText=items.get(position); 
holder.task.setText(taskText);

Solution 2:

Post a Comment for "Can't Add Item To Custom Arrayadapter"