Java tutorial
//package com.java2s; /** * Appcelerator Titanium Mobile * Copyright (c) 2009-2012 by Appcelerator, Inc. All Rights Reserved. * Licensed under the terms of the Apache Public License * Please see the LICENSE included with this distribution for details. */ import android.app.Activity; import android.content.DialogInterface; import android.content.DialogInterface.OnClickListener; public class Main { public static OnClickListener createFinishListener(final Activity me) { return new OnClickListener() { public void onClick(DialogInterface dialog, int which) { me.finish(); } }; } }