I have a custom ArrayAdapter that displays communication data in a ListView. (A list of phone numbers, email addresses and web urls) The communication data is held in an ArrayList of Communication which is a custom class.
The user can set the ListView into edit mode on clicking a button which displays a checkbox for each record to help decide which items will be deleted.
Firstly the XML for my ListView:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView
android:id="@+id/listViewCommunications"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/relativeLayoutCommsButtons"
android:layout_alignParentLeft="true" android:layout_alignParentTop="true">
</ListView>
<RelativeLayout
android:id="@+id/relativeLayoutCommsButtons"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true" >
<Button
android:id="@+id/buttonAdd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add" android:layout_marginTop="5dp"/>
<Button
android:id="@+id/buttonEditCancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:text="Edit" android:layout_marginTop="5dp"/>
<Button
android:id="@+id/buttonDelete"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/buttonAdd"
android:text="Delete" android:layout_marginTop="5dp"/>
</RelativeLayout>
</RelativeLayout>
Next the XML for each item in the ListView:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:padding="6dip">
<CheckBox
android:id="@+id/checkBoxDelete"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<ImageView
android:id="@+id/imageViewTypeIcon"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginRight="6dip"
android:src="@drawable/icon" />
<LinearLayout
android:orientation="vertical"
android:layout_width="0dip"
android:layout_weight="1"
android:layout_height="fill_parent">
<TextView
android:id="@+id/textViewType"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:gravity="center_vertical" />
<TextView
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:id="@+id/textViewCommunicationText"
android:singleLine="true"
android:ellipsize="marquee" />
</LinearLayout>
</LinearLayout>
The following is my custom ArrayAdapter:
public class CommunicationAdapter extends ArrayAdapter<Communication> {
private ArrayList<Communication> comms;
private Context context;
private boolean editMode;
public CommunicationAdapter(Context context, int textViewResourceId, ArrayList<Communication> comms, boolean editMode) {
super(context, textViewResourceId, comms);
this.context = context;
this.comms = comms;
this.editMode = editMode;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if(v == null) {
LayoutInflater vi = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.communication_menu_item, null);
}
Communication comm = comms.get(position);
if(comm != null) {
CheckBox checkBoxDelete = (CheckBox)v.findViewById(R.id.checkBoxDelete);
if(editMode == true) {
checkBoxDelete.setVisibility(View.VISIBLE);
} else {
checkBoxDelete.setVisibility(View.GONE);
}
ImageView typeIcon = (ImageView)v.findViewById(R.id.imageViewTypeIcon);
TextView type = (TextView)v.findViewById(R.id.textViewType);
TextView communicationText = (TextView)v.findViewById(R.id.textViewCommunicationText);
if(type != null) {
type.setText(comm.getCommunicationCode().GetDescription());
switch(comm.getType()) {
case 2: typeIcon.setImageResource(R.drawable.email); break;
case 3: typeIcon.setImageResource(R.drawable.globe); break;
case 4: typeIcon.setImageResource(R.drawable.phone); break;
case 1000: typeIcon.setImageResource(R.drawable.configuration02); break;
default: typeIcon.setImageResource(R.drawable.mobile); break;
}
}
if(communicationText != null) {
communicationText.setText(comm.getCommunicationText());
}
}
return v;
}
public void setEditMode(boolean editMode) {
this.editMode = editMode;
}
public boolean isEditMode() {
return editMode;
}
}
I need to find out how I can get a list of the checked items from my ArrayAdapter/Listview from the OnClick event fired by hitting the delete button on the ListView.
Any help would be aprreciated greatly. I have tried some things but dont seem to be able to get hold of the checkBoxDelete objects.
If you need anymore information please ask for it an I will suply what I can.