I have modified this example from the SDK pages to grab all the Contact Groups from the phone and display them. I cannot, however, figure out how to click one of them and t
Since you are using ListActivity you need to override onListItemClick().
protected void onListItemClick(ListView l, View v, int position, long id) {
// position is the position in the adapter and id is what adapter.getItemId() returns.
// use one of them to get the group id from the data.
}