summaryrefslogtreecommitdiff
path: root/SDL_Android/LivioSdlUtilities/src/com/livio/sdl/dialogs/ListViewDialog.java
blob: 3bdcb55ae9d59335eb68323f6b2fa7aae045cf70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.livio.sdl.dialogs;

import java.util.List;

import android.content.Context;
/**
 * A generic class representing a ListView dialog that allows the user to select
 * a single listview item.  The selected item is returned to the listener as a generic object.
 *
 * @author Mike Burke
 *
 * @param <E>
 */
public class ListViewDialog<E> extends BaseSingleListViewDialog<E> {

	public ListViewDialog(Context context, String title, List<E> items) {
		super(context, title, items);
		createDialog();
	}

}