blob: 50ac2612e550cbea77c66747e63f70a103aff2d2 [file] [log] [blame]
Jim Miller109f1fd2012-09-19 20:44:16 -07001/*
2 * Copyright (C) 2008 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
Jim Miller5ecd8112013-01-09 18:50:26 -080017package com.android.keyguard;
Jim Miller109f1fd2012-09-19 20:44:16 -070018
19import android.content.Context;
20import android.content.Intent;
21import android.os.PowerManager;
22import android.os.SystemClock;
Jim Miller450a3a12013-03-12 18:54:44 -070023import android.os.UserHandle;
Jim Miller109f1fd2012-09-19 20:44:16 -070024import android.telephony.TelephonyManager;
25import android.util.AttributeSet;
26import android.view.View;
Jim Miller109f1fd2012-09-19 20:44:16 -070027import android.widget.Button;
28
29import com.android.internal.telephony.IccCardConstants.State;
30import com.android.internal.widget.LockPatternUtils;
31
32/**
33 * This class implements a smart emergency button that updates itself based
34 * on telephony state. When the phone is idle, it is an emergency call button.
35 * When there's a call in progress, it presents an appropriate message and
36 * allows the user to return to the call.
37 */
38public class EmergencyButton extends Button {
Jim Miller109f1fd2012-09-19 20:44:16 -070039 private static final String ACTION_EMERGENCY_DIAL = "com.android.phone.EmergencyDialer.DIAL";
40
41 KeyguardUpdateMonitorCallback mInfoCallback = new KeyguardUpdateMonitorCallback() {
42
43 @Override
Jim Miller52a61332014-11-12 19:29:51 -080044 public void onSimStateChanged(int subId, int slotId, State simState) {
45 updateEmergencyCallButton();
Jim Miller109f1fd2012-09-19 20:44:16 -070046 }
47
Jorim Jaggi5cf17872014-03-26 18:31:48 +010048 @Override
49 public void onPhoneStateChanged(int phoneState) {
Jim Miller52a61332014-11-12 19:29:51 -080050 updateEmergencyCallButton();
Jorim Jaggi5cf17872014-03-26 18:31:48 +010051 }
Jim Miller109f1fd2012-09-19 20:44:16 -070052 };
53 private LockPatternUtils mLockPatternUtils;
54 private PowerManager mPowerManager;
55
56 public EmergencyButton(Context context) {
57 this(context, null);
58 }
59
60 public EmergencyButton(Context context, AttributeSet attrs) {
61 super(context, attrs);
62 }
63
64 @Override
Jim Miller0928e012012-11-06 18:43:22 -080065 protected void onAttachedToWindow() {
66 super.onAttachedToWindow();
67 KeyguardUpdateMonitor.getInstance(mContext).registerCallback(mInfoCallback);
68 }
69
70 @Override
71 protected void onDetachedFromWindow() {
72 super.onDetachedFromWindow();
73 KeyguardUpdateMonitor.getInstance(mContext).removeCallback(mInfoCallback);
74 }
75
76 @Override
Jim Miller109f1fd2012-09-19 20:44:16 -070077 protected void onFinishInflate() {
78 super.onFinishInflate();
79 mLockPatternUtils = new LockPatternUtils(mContext);
80 mPowerManager = (PowerManager) mContext.getSystemService(Context.POWER_SERVICE);
81 setOnClickListener(new OnClickListener() {
82 public void onClick(View v) {
83 takeEmergencyCallAction();
84 }
85 });
Jim Miller52a61332014-11-12 19:29:51 -080086 updateEmergencyCallButton();
Jim Miller109f1fd2012-09-19 20:44:16 -070087 }
88
89 /**
90 * Shows the emergency dialer or returns the user to the existing call.
91 */
92 public void takeEmergencyCallAction() {
93 // TODO: implement a shorter timeout once new PowerManager API is ready.
94 // should be the equivalent to the old userActivity(EMERGENCY_CALL_TIMEOUT)
95 mPowerManager.userActivity(SystemClock.uptimeMillis(), true);
Yorke Leecc5179f2014-09-03 15:01:18 -070096 if (mLockPatternUtils.isInCall()) {
Jim Miller109f1fd2012-09-19 20:44:16 -070097 mLockPatternUtils.resumeCall();
98 } else {
Brian Colonna7fce3802013-09-17 15:51:32 -040099 final boolean bypassHandler = true;
100 KeyguardUpdateMonitor.getInstance(mContext).reportEmergencyCallAction(bypassHandler);
Jim Miller109f1fd2012-09-19 20:44:16 -0700101 Intent intent = new Intent(ACTION_EMERGENCY_DIAL);
102 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
103 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Jim Miller450a3a12013-03-12 18:54:44 -0700104 getContext().startActivityAsUser(intent,
105 new UserHandle(mLockPatternUtils.getCurrentUser()));
Jim Miller109f1fd2012-09-19 20:44:16 -0700106 }
107 }
108
Jim Miller52a61332014-11-12 19:29:51 -0800109 private void updateEmergencyCallButton() {
Jim Miller3efe1062012-09-28 16:59:31 -0700110 boolean enabled = false;
Yorke Leecc5179f2014-09-03 15:01:18 -0700111 if (mLockPatternUtils.isInCall()) {
Jim Miller3efe1062012-09-28 16:59:31 -0700112 enabled = true; // always show "return to call" if phone is off-hook
113 } else if (mLockPatternUtils.isEmergencyCallCapable()) {
Jim Miller52a61332014-11-12 19:29:51 -0800114 final boolean simLocked = KeyguardUpdateMonitor.getInstance(mContext).isSimPinVoiceSecure();
Jim Miller3efe1062012-09-28 16:59:31 -0700115 if (simLocked) {
116 // Some countries can't handle emergency calls while SIM is locked.
117 enabled = mLockPatternUtils.isEmergencyCallEnabledWhileSimLocked();
118 } else {
119 // True if we need to show a secure screen (pin/pattern/SIM pin/SIM puk);
120 // hides emergency button on "Slide" screen if device is not secure.
Patrick Bradyb6a1ea72012-10-11 21:09:14 -0700121 enabled = mLockPatternUtils.isSecure();
Jim Miller3efe1062012-09-28 16:59:31 -0700122 }
Jim Miller109f1fd2012-09-19 20:44:16 -0700123 }
Santos Cordon0bae09f2014-07-07 14:53:10 -0700124 mLockPatternUtils.updateEmergencyCallButtonState(this, enabled, false);
Jim Miller109f1fd2012-09-19 20:44:16 -0700125 }
126
127}