Your AdManagerInterstitialAdLoadCallback anonymous class is keeping a reference to your Activity even after it is destroyed. Make your anonymous AdManagerInterstitialAdLoadCallback a static inner class or as a stand alone class and any reference to your Activity in this class should be kept as a WeakReference.