blob: aabb5877764e1602fb6642fb5a09e52cef8510d4 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 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
Vishnu Nair9ccb1d22019-03-20 16:32:44 +000019import com.android.internal.R;
20
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021import android.app.AlertDialog;
22import android.content.Context;
23import android.os.Handler;
24import android.os.Message;
25import android.view.KeyEvent;
26import android.view.WindowManager;
27import android.widget.Button;
28
Wale Ogunwale59507092018-10-29 09:00:30 -070029public class BaseErrorDialog extends AlertDialog {
riddle_hsu7f1e3f32014-07-08 04:30:19 +080030 private static final int ENABLE_BUTTONS = 0;
31 private static final int DISABLE_BUTTONS = 1;
32
33 private boolean mConsuming = true;
34
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035 public BaseErrorDialog(Context context) {
Lucas Dupin332d34f2018-09-11 11:08:17 -070036 super(context, com.android.internal.R.style.Theme_DeviceDefault_Dialog_AppError);
Adam Lesinskia82b6262017-03-21 16:56:17 -070037 context.assertRuntimeOverlayThemable();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038
Vishnu Nair9ccb1d22019-03-20 16:32:44 +000039 getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040 getWindow().setFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
41 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070042 WindowManager.LayoutParams attrs = getWindow().getAttributes();
43 attrs.setTitle("Error Dialog");
44 getWindow().setAttributes(attrs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045 }
46
47 public void onStart() {
48 super.onStart();
riddle_hsu7f1e3f32014-07-08 04:30:19 +080049 mHandler.sendEmptyMessage(DISABLE_BUTTONS);
50 mHandler.sendMessageDelayed(mHandler.obtainMessage(ENABLE_BUTTONS), 1000);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051 }
52
53 public boolean dispatchKeyEvent(KeyEvent event) {
54 if (mConsuming) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080055 //Slog.i(TAG, "Consuming: " + event);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056 return true;
57 }
Joe Onorato8a9b2202010-02-26 18:56:32 -080058 //Slog.i(TAG, "Dispatching: " + event);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059 return super.dispatchKeyEvent(event);
60 }
61
62 private void setEnabled(boolean enabled) {
63 Button b = (Button)findViewById(R.id.button1);
64 if (b != null) {
65 b.setEnabled(enabled);
66 }
67 b = (Button)findViewById(R.id.button2);
68 if (b != null) {
69 b.setEnabled(enabled);
70 }
Dan Egnorb7f03672009-12-09 16:22:32 -080071 b = (Button)findViewById(R.id.button3);
72 if (b != null) {
73 b.setEnabled(enabled);
74 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075 }
76
77 private Handler mHandler = new Handler() {
78 public void handleMessage(Message msg) {
riddle_hsu7f1e3f32014-07-08 04:30:19 +080079 if (msg.what == ENABLE_BUTTONS) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080 mConsuming = false;
81 setEnabled(true);
riddle_hsu7f1e3f32014-07-08 04:30:19 +080082 } else if (msg.what == DISABLE_BUTTONS) {
83 setEnabled(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084 }
85 }
86 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087}