finish the Dialog and Activity

Sunny picture Sunny · Jan 3, 2012 · Viewed 8.2k times · Source

I have a activity which start with a alertdialog

when i press back button only dialog get close.

I want to close both dialog and activity.

How to do this?

Answer

WarrenFaith picture WarrenFaith · Jan 3, 2012

You are looking for the OnCancelListener that can be set for the Dialog.setOnCancelListener()

There you can call finish() which will finish your Activity, too.