I would like specific events to happen to each member of the listview when clicked
Set an AdapterView.OnItemClickListener on your ListView.
based on their content
Get the item at the current position and handle the event:
java
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Object item = parent.getAdapter().getItem(position);
if ( /* your condition here */ ) {
} else if ( /* something else */ ) {
}
}
});