Back to project page sdl_tester_android.
The source code is released under:
Copyright (c) 2014, Ford Motor Company All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are m...
If you think the Android project sdl_tester_android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.livio.sdl.dialogs; //from ww w . ja v a 2 s . c o m 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(); } }