How to start an activity from a dialog in Android

点点圈 提交于 2019-12-01 03:51:46
public class CustomDialog extends Dialog implements OnClickListener {
  Button okButton, cancelButton;
  Activity mActivity;

  public CustomDialog(Activity activity) {      
    super(activity);
    mActivity = activity;
    setContentView(R.layout.custom_dialog);
    okButton = (Button) findViewById(R.id.button_ok);
    okButton.setOnClickListener(this);
    cancelButton = (Button) findViewById(R.id.button_cancel);
    cancelButton.setOnClickListener(this);
  }

  @Override
  public void onClick(View v) {       
    if (v == cancelButton)
        dismiss();
    else {
        Intent i = new Intent(mActivity, ItemSelection.class);
        mActivity.startActivity(i);
    }
  }
}

@dhaag23 You don't even have to do that much work!

Call getContext()

This returns the Context passed to the Dialog's constructor.

Intent i = new Intent(getBaseContext(), ItemSelection.class);

This worked for me although the structure is different, there is no class for the dialog.

Simple, just save the context that gets passed into the CustomDialog constructor in a local variable.

rekire

Like Cheezmeister wrote it is not nessesary to get the Actvitiy. You can simply use the context like this:

Intent i = new Intent(getContext(), ItemSelection.class);
getContext().startActivity(i);
Debasish Ghosh

I suggest you use this. It makes it so simple:

AlertDialog.Builder dialog = new AlertDialog.Builder(RegistrationActivity.this);
dialog.setCancelable(false);
dialog.setTitle("Error Alert");
dialog.setMessage(info[1]);
dialog.setPositiveButton("ok", new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int id) {
        Intent intent = new Intent(RegistrationActivity.this, RegistrationActivity.class);

        startActivity(intent);
    }
})
.setNegativeButton("", new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {

    }
});

final AlertDialog alert = dialog.create();
alert.show();

info[1] is my data which is shown. You can replace this with your own message.

If you are working on a DialogFragment you can do it that way:

public class MyDialogFragment : DialogFragment
    {
        private Context _Context;
        ...

         public override void OnActivityCreated(Bundle savedInstanceState)
        {
            _Context = Context;

            ...


            alertDialog.SetButton("Start Activity Button", delegate
            {
                var uri = Android.Net.Uri.Parse("https://.....");
                var intent = new Intent(Intent.ActionView, uri);
                _Context.StartActivity(intent);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!