summaryrefslogtreecommitdiff
path: root/SDL_Android/LivioSdlUtilities/src/com/livio/sdl/dialogs/MultipleListViewDialog.java
blob: 4f5b91027c50a3671f7a5298bd3d51b845390dc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.livio.sdl.dialogs;

import java.util.List;

import android.content.Context;
import android.content.DialogInterface;
/**
 * A generic class representing a ListView dialog that allows the user to select
 * multiple listview items.  Selected items are stored in a protected List<E> object
 * called selectedItems, which can be used by subclasses of this class.
 *
 * @author Mike Burke
 *
 * @param <E>
 */
public class MultipleListViewDialog<E> extends BaseMultipleListViewDialog<E> {

	public MultipleListViewDialog(Context context, String title, List<E> items) {
		super(context, title, items);
		setPositiveButton(positiveButton);
		createDialog();
	}
	
	//dialog button listeners
	private final DialogInterface.OnClickListener positiveButton = new DialogInterface.OnClickListener() {
		@Override
		public void onClick(DialogInterface dialog, int which) {
			notifyListener(selectedItems);
		}
	};

}