Home
last modified time | relevance | path

Searched refs:ButtonDispatcher (Results 1 – 12 of 12) sorted by relevance

/aosp14/frameworks/base/core/java/android/inputmethodservice/navigationbar/
H A DNavigationBarView.java76 private final SparseArray<ButtonDispatcher> mButtonDispatchers = new SparseArray<>();
94 new ButtonDispatcher(com.android.internal.R.id.input_method_nav_back)); in NavigationBarView()
96 new ButtonDispatcher(com.android.internal.R.id.input_method_nav_ime_switcher)); in NavigationBarView()
98 new ButtonDispatcher(com.android.internal.R.id.input_method_nav_home_handle)); in NavigationBarView()
150 public ButtonDispatcher getBackButton() { in getBackButton()
154 public ButtonDispatcher getImeSwitchButton() { in getImeSwitchButton()
158 public ButtonDispatcher getHomeHandle() { in getHomeHandle()
162 public SparseArray<ButtonDispatcher> getButtonDispatchers() { in getButtonDispatchers()
H A DNavigationBarInflaterView.java83 SparseArray<ButtonDispatcher> mButtonDispatchers;
124 void setButtonDispatchers(SparseArray<ButtonDispatcher> buttonDispatchers) { in setButtonDispatchers()
135 final ButtonDispatcher dispatcher = mButtonDispatchers.valueAt(i); in updateButtonDispatchersCurrentView()
162 ButtonDispatcher buttonDispatcher) { in initiallyFill()
169 private void addAll(ButtonDispatcher buttonDispatcher, ViewGroup parent) { in addAll()
H A DButtonDispatcher.java33 final class ButtonDispatcher { class
70 ButtonDispatcher(int id) { in ButtonDispatcher() method in ButtonDispatcher
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/navigationbar/
H A DNavigationBarInflaterViewTest.java35 import com.android.systemui.navigationbar.buttons.ButtonDispatcher;
66 mNavBarInflaterView.mButtonDispatchers.put(BUTTON_ID, new ButtonDispatcher(BUTTON_ID)); in setUp()
96 ButtonDispatcher button = mNavBarInflaterView.mButtonDispatchers.get(BUTTON_ID); in testUpdateButtonDispatchersCurrentView_isVerticalTrue()
108 ButtonDispatcher button = mNavBarInflaterView.mButtonDispatchers.get(BUTTON_ID); in testUpdateButtonDispatchersCurrentView_isVerticalFalse()
H A DNavigationBarTest.java85 import com.android.systemui.navigationbar.buttons.ButtonDispatcher;
143 ButtonDispatcher mHomeButton;
145 ButtonDispatcher mRecentsButton;
147 ButtonDispatcher mAccessibilityButton;
149 ButtonDispatcher mImeSwitchButton;
151 ButtonDispatcher mBackButton;
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/
H A DNavigationBarView.java67 import com.android.systemui.navigationbar.buttons.ButtonDispatcher;
211 ButtonDispatcher backButton = getBackButton(); in onBackAltCleared()
319 mButtonDispatchers.put(R.id.back, new ButtonDispatcher(R.id.back)); in NavigationBarView()
320 mButtonDispatchers.put(R.id.home, new ButtonDispatcher(R.id.home)); in NavigationBarView()
412 public ButtonDispatcher getRecentsButton() { in getRecentsButton()
416 public ButtonDispatcher getBackButton() { in getBackButton()
420 public ButtonDispatcher getHomeButton() { in getHomeButton()
424 public ButtonDispatcher getImeSwitchButton() { in getImeSwitchButton()
428 public ButtonDispatcher getAccessibilityButton() { in getAccessibilityButton()
436 public ButtonDispatcher getHomeHandle() { in getHomeHandle()
[all …]
H A DNavigationBarInflaterView.java40 import com.android.systemui.navigationbar.buttons.ButtonDispatcher;
110 SparseArray<ButtonDispatcher> mButtonDispatchers;
186 public void setButtonDispatchers(SparseArray<ButtonDispatcher> buttonDispatchers) { in setButtonDispatchers()
198 final ButtonDispatcher dispatcher = mButtonDispatchers.valueAt(i); in updateButtonDispatchersCurrentView()
230 private void initiallyFill(ButtonDispatcher buttonDispatcher) { in initiallyFill()
237 private void addAll(ButtonDispatcher buttonDispatcher, ViewGroup parent) { in addAll()
H A DNavigationBarTransitions.java29 import com.android.systemui.navigationbar.buttons.ButtonDispatcher;
189 SparseArray<ButtonDispatcher> buttonDispatchers = mView.getButtonDispatchers(); in applyDarkIntensity()
H A DNavigationBar.java124 import com.android.systemui.navigationbar.buttons.ButtonDispatcher;
1271 ButtonDispatcher backButton = mView.getBackButton(); in updateScreenPinningGestures()
1272 ButtonDispatcher recentsButton = mView.getRecentsButton(); in updateScreenPinningGestures()
1295 ButtonDispatcher recentsButton = mView.getRecentsButton(); in prepareNavigationBarView()
1299 ButtonDispatcher homeButton = mView.getHomeButton(); in prepareNavigationBarView()
1304 ButtonDispatcher accessibilityButton = mView.getAccessibilityButton(); in prepareNavigationBarView()
1309 ButtonDispatcher imeSwitcherButton = mView.getImeSwitchButton(); in prepareNavigationBarView()
1457 ButtonDispatcher button = btnId2 == R.id.recent_apps in onLongPressNavigationButtons()
1853 ButtonDispatcher button, in updateButtonLocation()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/buttons/
H A DContextualButton.java29 public class ContextualButton extends ButtonDispatcher {
H A DButtonDispatcher.java33 public class ButtonDispatcher { class
70 public ButtonDispatcher(int id) { in ButtonDispatcher() method in ButtonDispatcher
H A DContextualButtonGroup.java27 public class ContextualButtonGroup extends ButtonDispatcher {