summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Charles He <qiurui@google.com> 2017-10-23 12:41:04 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2017-10-23 12:41:04 +0000
commitbd71faef368c56eeb85a9009e6dff3e41a1e4f9c (patch)
tree589dec1c09b499bd637573d8e308f3643e610873
parent9b874662672b4fccdcdb82c963bcc0c7028806f8 (diff)
parent4973680e5640afdd10050ab9089d971a10bd6abd (diff)
Merge "AM: clean up screen pinning toasts."
-rw-r--r--services/core/java/com/android/server/am/LockTaskNotify.java25
1 files changed, 2 insertions, 23 deletions
diff --git a/services/core/java/com/android/server/am/LockTaskNotify.java b/services/core/java/com/android/server/am/LockTaskNotify.java
index 5d6e9b58881f..1dcb0addc18b 100644
--- a/services/core/java/com/android/server/am/LockTaskNotify.java
+++ b/services/core/java/com/android/server/am/LockTaskNotify.java
@@ -17,8 +17,6 @@
package com.android.server.am;
import android.content.Context;
-import android.os.Handler;
-import android.os.Message;
import android.os.SystemClock;
import android.util.Slog;
import android.view.WindowManager;
@@ -27,21 +25,19 @@ import android.widget.Toast;
import com.android.internal.R;
/**
- * Helper to manage showing/hiding a image to notify them that they are entering
- * or exiting screen pinning mode.
+ * Helper to manage showing/hiding a image to notify them that they are entering or exiting screen
+ * pinning mode. All exposed methods should be called from a handler thread.
*/
public class LockTaskNotify {
private static final String TAG = "LockTaskNotify";
private static final long SHOW_TOAST_MINIMUM_INTERVAL = 1000;
private final Context mContext;
- private final H mHandler;
private Toast mLastToast;
private long mLastShowToastTime;
public LockTaskNotify(Context context) {
mContext = context;
- mHandler = new H();
}
/** Show "Screen pinned" toast. */
@@ -56,10 +52,6 @@ public class LockTaskNotify {
/** Show a toast that describes the gesture the user should use to escape pinned mode. */
void showEscapeToast() {
- mHandler.obtainMessage(H.SHOW_ESCAPE_TOAST).sendToTarget();
- }
-
- private void handleShowEscapeToast() {
long showToastTime = SystemClock.elapsedRealtime();
if ((showToastTime - mLastShowToastTime) < SHOW_TOAST_MINIMUM_INTERVAL) {
Slog.i(TAG, "Ignore toast since it is requested in very short interval.");
@@ -79,17 +71,4 @@ public class LockTaskNotify {
toast.show();
return toast;
}
-
- private final class H extends Handler {
- private static final int SHOW_ESCAPE_TOAST = 3;
-
- @Override
- public void handleMessage(Message msg) {
- switch(msg.what) {
- case SHOW_ESCAPE_TOAST:
- handleShowEscapeToast();
- break;
- }
- }
- }
}