diff options
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/screenshot/LongScreenshotActivity.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/screenshot/LongScreenshotActivity.java b/packages/SystemUI/src/com/android/systemui/screenshot/LongScreenshotActivity.java index 31cdadab070d..03ec46f57333 100644 --- a/packages/SystemUI/src/com/android/systemui/screenshot/LongScreenshotActivity.java +++ b/packages/SystemUI/src/com/android/systemui/screenshot/LongScreenshotActivity.java @@ -270,8 +270,14 @@ public class LongScreenshotActivity extends Activity { @Override protected void onPause() { - Log.d(TAG, "onPause finishing=" + isFinishing()); + Log.d(TAG, "onPause"); super.onPause(); + } + + @Override + protected void onStop() { + Log.d(TAG, "onStop finishing=" + isFinishing()); + super.onStop(); if (isFinishing()) { if (mScrollCaptureResponse != null) { mScrollCaptureResponse.close(); @@ -300,12 +306,6 @@ public class LongScreenshotActivity extends Activity { } @Override - protected void onStop() { - Log.d(TAG, "onStop"); - super.onStop(); - } - - @Override protected void onDestroy() { Log.d(TAG, "onDestroy"); super.onDestroy(); |