From beaaff27e6ea36ddab00ccf259bb73a18208f5c2 Mon Sep 17 00:00:00 2001 From: yueg Date: Fri, 2 Feb 2018 17:28:02 -0800 Subject: Remove bubble v1. Bug: 67605985 Test: manual PiperOrigin-RevId: 184358120 Change-Id: I17288da2b059f18bd51247e27aa174c7994e6f05 --- java/com/android/bubble/WindowRoot.java | 74 --------------------------------- 1 file changed, 74 deletions(-) delete mode 100644 java/com/android/bubble/WindowRoot.java (limited to 'java/com/android/bubble/WindowRoot.java') diff --git a/java/com/android/bubble/WindowRoot.java b/java/com/android/bubble/WindowRoot.java deleted file mode 100644 index b9024c413..000000000 --- a/java/com/android/bubble/WindowRoot.java +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Copyright (C) 2017 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License - */ - -package com.android.bubble; - -import android.content.Context; -import android.content.res.Configuration; -import android.support.annotation.NonNull; -import android.view.KeyEvent; -import android.widget.FrameLayout; - -/** - * ViewGroup that handles some overlay window concerns. Allows back button and configuration change - * events to be listened for via interfaces. - */ -public class WindowRoot extends FrameLayout { - - /** Callback for when the back button is pressed while this window is in focus */ - public interface OnBackPressedListener { - boolean onBackPressed(); - } - - /** Callback for when the Configuration changes for this window */ - public interface OnConfigurationChangedListener { - void onConfigurationChanged(Configuration newConfiguration); - } - - private OnBackPressedListener backPressedListener; - private OnConfigurationChangedListener configurationChangedListener; - - public WindowRoot(@NonNull Context context) { - super(context); - } - - public void setOnBackPressedListener(OnBackPressedListener listener) { - backPressedListener = listener; - } - - public void setOnConfigurationChangedListener(OnConfigurationChangedListener listener) { - configurationChangedListener = listener; - } - - @Override - public boolean dispatchKeyEvent(KeyEvent event) { - if (event.getKeyCode() == KeyEvent.KEYCODE_BACK && backPressedListener != null) { - if (event.getAction() == KeyEvent.ACTION_UP) { - return backPressedListener.onBackPressed(); - } - return true; - } - return super.dispatchKeyEvent(event); - } - - @Override - public void dispatchConfigurationChanged(Configuration newConfig) { - super.dispatchConfigurationChanged(newConfig); - if (configurationChangedListener != null) { - configurationChangedListener.onConfigurationChanged(newConfig); - } - } -} -- cgit v1.2.3