In my Android application, I have a class that extends ListActivity and the class itself is a list. (The application is a ToDo list).
And I want to add a static header (an image) on top of the list that will scroll with the list. When I use addHeaderView(imageView, null, false) the image is displayed, but it won't work as expected: it will be clickable and perform the action of the first list item. The actual first list item performs the second list items's function, and so on.
Any idea why this is and what can I do to resolve it?
Here is my code of the onCreate() function:
private ListView lv;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
lv = getListView();
ImageView im = new ImageView(this);
im.setBackgroundResource(R.drawable.android_robot);
lv.addHeaderView(im, null, false);
refreshList();
lv.setTextFilterEnabled(true);
lv.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
goToTasks(String.valueOf(getListAdapter().getItem(position)));
}
});
lv.setCacheColorHint(0);
lv.setBackgroundColor(0xFFFFFFFF);
registerForContextMenu(lv);
int[] colors = {0x00FF9900, 0xAAFFCC00};
lv.setDivider(new GradientDrawable(Orientation.LEFT_RIGHT, colors));
lv.setDividerHeight(2);
}
And the code for my Adapter (This is in the refreshList() method):
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.list_item, populateList());
setListAdapter(adapter);
Note: The populateList() method returns an array of Strings which is set to the Adapter as in the above code.
If any more code or screenshots are needed, ask in the comments.
Thanks in advance for any help!
EDIT:
I just found a temporary solution: Just adding -1 after the position of,
goToTasks(String.valueOf(getListAdapter().getItem(position)));
will work, but that doesn't answer the real reason why this is happening.