Back to project page yammp.
The source code is released under:
GNU Lesser General Public License
If you think the Android project yammp 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 org.yammp.dialog; /*from w ww . j ava 2s . c o m*/ import android.app.AlertDialog; import android.content.Context; import android.content.DialogInterface; import android.content.DialogInterface.OnCancelListener; import android.content.DialogInterface.OnClickListener; public class PlaylistPickerDialog extends AlertDialog implements OnCancelListener, OnClickListener { public PlaylistPickerDialog(Context context) { super(context); } @Override public void onCancel(DialogInterface dialog) { // TODO Auto-generated method stub } @Override public void onClick(DialogInterface dialog, int which) { // TODO Auto-generated method stub } }