blob: afde3226e9339b0241dadbde8ce4cca229fced4c [file] [log] [blame]
Jason Monk62515be2014-05-21 16:06:19 -04001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.am;
18
Benjamin Franz43261142015-02-11 15:59:44 +000019import android.app.ActivityManager;
Jason Monk62515be2014-05-21 16:06:19 -040020import android.content.Context;
Jason Monk62515be2014-05-21 16:06:19 -040021import android.os.Handler;
22import android.os.Message;
Jason Monka5852682014-10-23 11:48:36 -040023import android.view.WindowManager;
Jason Monk815e0572014-08-12 17:26:36 -040024import android.view.accessibility.AccessibilityManager;
Jason Monka8f569c2014-07-07 12:15:21 -040025import android.widget.Toast;
Jason Monk62515be2014-05-21 16:06:19 -040026
27import com.android.internal.R;
28
29/**
30 * Helper to manage showing/hiding a image to notify them that they are entering
31 * or exiting lock-to-app mode.
32 */
33public class LockTaskNotify {
34 private static final String TAG = "LockTaskNotify";
35
Jason Monk62515be2014-05-21 16:06:19 -040036 private final Context mContext;
37 private final H mHandler;
Jason Monk815e0572014-08-12 17:26:36 -040038 private AccessibilityManager mAccessibilityManager;
Jason Monk07f82b72014-08-19 15:20:01 -040039 private Toast mLastToast;
Jason Monk62515be2014-05-21 16:06:19 -040040
Jason Monk62515be2014-05-21 16:06:19 -040041 public LockTaskNotify(Context context) {
42 mContext = context;
Jason Monk815e0572014-08-12 17:26:36 -040043 mAccessibilityManager = (AccessibilityManager)
44 mContext.getSystemService(Context.ACCESSIBILITY_SERVICE);
Jason Monk62515be2014-05-21 16:06:19 -040045 mHandler = new H();
Jason Monk62515be2014-05-21 16:06:19 -040046 }
47
Benjamin Franz43261142015-02-11 15:59:44 +000048 public void showToast(int lockTaskModeState) {
49 mHandler.obtainMessage(H.SHOW_TOAST, lockTaskModeState, 0 /* Not used */).sendToTarget();
Jason Monka8f569c2014-07-07 12:15:21 -040050 }
51
Benjamin Franz43261142015-02-11 15:59:44 +000052 public void handleShowToast(int lockTaskModeState) {
53 String text = null;
54 if (lockTaskModeState == ActivityManager.LOCK_TASK_MODE_LOCKED) {
55 text = mContext.getString(R.string.lock_to_app_toast_locked);
56 } else if (lockTaskModeState == ActivityManager.LOCK_TASK_MODE_PINNED) {
57 text = mContext.getString(mAccessibilityManager.isEnabled()
58 ? R.string.lock_to_app_toast_accessible : R.string.lock_to_app_toast);
59 }
60 if (text == null) {
61 return;
Jason Monk815e0572014-08-12 17:26:36 -040062 }
Jason Monk07f82b72014-08-19 15:20:01 -040063 if (mLastToast != null) {
64 mLastToast.cancel();
65 }
Jason Monka5852682014-10-23 11:48:36 -040066 mLastToast = makeAllUserToastAndShow(text);
Jason Monka8f569c2014-07-07 12:15:21 -040067 }
68
Jason Monk62515be2014-05-21 16:06:19 -040069 public void show(boolean starting) {
Jason Monk7779bf12014-07-14 10:20:21 -040070 int showString = R.string.lock_to_app_exit;
71 if (starting) {
72 showString = R.string.lock_to_app_start;
Jason Monk62515be2014-05-21 16:06:19 -040073 }
Jason Monka5852682014-10-23 11:48:36 -040074 makeAllUserToastAndShow(mContext.getString(showString));
75 }
76
77 private Toast makeAllUserToastAndShow(String text) {
78 Toast toast = Toast.makeText(mContext, text, Toast.LENGTH_LONG);
79 toast.getWindowParams().privateFlags |=
80 WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
81 toast.show();
82 return toast;
Jason Monk62515be2014-05-21 16:06:19 -040083 }
84
85 private final class H extends Handler {
Jason Monka8f569c2014-07-07 12:15:21 -040086 private static final int SHOW_TOAST = 3;
Jason Monk62515be2014-05-21 16:06:19 -040087
88 @Override
89 public void handleMessage(Message msg) {
90 switch(msg.what) {
Jason Monka8f569c2014-07-07 12:15:21 -040091 case SHOW_TOAST:
Benjamin Franz43261142015-02-11 15:59:44 +000092 handleShowToast(msg.arg1);
Jason Monka8f569c2014-07-07 12:15:21 -040093 break;
Jason Monk62515be2014-05-21 16:06:19 -040094 }
95 }
96 }
97}