0

我遇到了一个问题,我现在为 Alert Dialogs 创建了一个类,如果有人按 Ok,它应该返回上一个活动,但我不知道该怎么做,因为当我输入 finsih(); 它给了我一个错误这是我的代码:

package com.laurenswuyts.find.it;

import com.laurenswuyts.find.it.R;

import android.app.Activity;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;



public class AlertDialogManager {
    /**
     * Function to display simple Alert Dialog
     * @param context - application context
     * @param title - alert dialog title
     * @param message - alert message
     * @param status - success/failure (used to set icon)
     *               - pass null if you don't want icon
     * */
    @SuppressWarnings("deprecation")
    public void showAlertDialog(Context context, String title, String message,
            Boolean status) {
        AlertDialog alertDialog = new AlertDialog.Builder(context).create();

        // Setting Dialog Title
        alertDialog.setTitle(title);

        // Setting Dialog Message
        alertDialog.setMessage(message);

        if(status != null)
            // Setting alert dialog icon
            alertDialog.setIcon((status) ? R.drawable.success : R.drawable.fail);

        // Setting OK Button
        alertDialog.setButton("OK", new DialogInterface.OnClickListener() {

            public void onClick(final DialogInterface dialog, final int which) {

            }





        });

        // Showing Alert Message
        alertDialog.show();
    }
}

在公共 void Onclick 中,我尝试输入 finish(); 但这没有用。

谁能帮我?提前致谢!

问候,

4

2 回答 2

1

您应该向您的经理添加一个属性;

Context context;

showAlertDialog()在你的方法上初始化它。

在您的点击下;

((Activity) context).finish();
于 2013-11-04T22:53:19.457 回答
0

您可以从调用活动中传递点击侦听器:

DialogInterface.OnClickListener clickListener = new DialogInterface.OnClickListener() {
        public void onClick(final DialogInterface dialog, final int which) {
            finish();
        }
    });
AlertDialogManager manager = new AlertDialogManager();
manager.showAlertDialog(this, title, message, status, clickListener);

然后在你的AlertDialogManager,你改变这样的方法:

public void showAlertDialog(Context context, String title, String message,
        Boolean status, DialogInterface.OnClickListener clickListener) {
    AlertDialog alertDialog = new AlertDialog.Builder(context).create();

    // Setting Dialog Title
    alertDialog.setTitle(title);

    // Setting Dialog Message
    alertDialog.setMessage(message);

    if(status != null)
        // Setting alert dialog icon
        alertDialog.setIcon((status) ? R.drawable.success : R.drawable.fail);

    // Setting OK Button
    alertDialog.setButton("OK", clickListener);

    // Showing Alert Message
    alertDialog.show();
}

这样,单击行为由调用类处理,并且AlertDialogManager不知道单击“确定”后会发生什么。

于 2013-11-04T22:53:35.263 回答