Searched refs:panel (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSFooter.java22 * The bottom footer of the quick settings panel.
28 void setQSPanel(@Nullable QSPanel panel); argument
H A DQSAnimator.java51 * position to the normal QS panel.
77 public QSAnimator(QS qs, QuickQSPanel quickPanel, QSPanel panel) { argument
80 mQsPanel = panel;
92 panel.setPageListener(this);
215 // quick panel.
H A DQSDetail.java120 public void setQsPanel(QSPanel panel, QuickStatusBarHeader header, View footer) { argument
121 mQsPanel = panel;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelBar.java100 final PanelView panel = mPanel;
101 if (panel == null) {
102 // panel is not there, so we'll eat the gesture
103 Log.v(TAG, String.format("onTouch: no panel for touch at (%d,%d)",
107 boolean enabled = panel.isEnabled();
108 if (DEBUG) LOG("PanelBar.onTouch: state=%d ACTION_DOWN: panel %s %s", mState, panel,
111 // panel is disabled, so we'll eat the gesture
113 "onTouch: panel (%s) is disabled, ignoring touch at (%d,%d)",
114 panel, (in
[all...]
H A DNavigationBarView.java314 NotificationPanelView panel) {
317 mPanelView = panel;
313 setComponents(RecentsComponent recentsComponent, Divider divider, NotificationPanelView panel) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/car/
H A DCarQSFooter.java98 public void setQSPanel(@Nullable QSPanel panel) { argument
99 if (panel != null) {
100 mMultiUserSwitch.setQsPanel(panel);
/frameworks/support/slidingpanelayout/src/main/java/androidx/slidingpanelayout/widget/
H A DSlidingPaneLayout.java111 * The fade color used for the sliding panel. 0 = no fading.
121 * The fade color used for the panel covered by the slider. 0 = no fading.
137 * This is the minimum section of the sliding panel that will
143 * True if a panel can slide with the current measurements
153 * How far the panel is offset from its closed position.
159 * How far the non-sliding panel is parallaxed from its usual position when open.
165 * How far in pixels the slideable panel may move.
170 * A panel view is locked into internal scrolling or another condition that
205 * @param panel The child view that was moved
208 void onPanelSlide(@NonNull View panel, floa argument
214 onPanelOpened(@onNull View panel) argument
221 onPanelClosed(@onNull View panel) argument
230 onPanelSlide(View panel, float slideOffset) argument
233 onPanelOpened(View panel) argument
236 onPanelClosed(View panel) argument
324 dispatchOnPanelSlide(View panel) argument
330 dispatchOnPanelOpened(View panel) argument
337 dispatchOnPanelClosed(View panel) argument
344 updateObscuredViewsVisibility(View panel) argument
[all...]
/frameworks/support/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/widget/
H A DSlidingPaneLayoutActivity.java124 * This panel slide listener updates the action bar accordingly for each panel state.
128 public void onPanelOpened(View panel) { argument
133 public void onPanelClosed(View panel) { argument
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/widget/
H A DSlidingPaneLayoutActivity.java124 * This panel slide listener updates the action bar accordingly for each panel state.
128 public void onPanelOpened(View panel) { argument
133 public void onPanelClosed(View panel) { argument
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DCommandQueueTest.java92 String panel = "some_panel";
93 mCommandQueue.animateExpandSettingsPanel(panel);
95 verify(mCallbacks).animateExpandSettingsPanel(eq(panel));
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/app/
H A DAppCompatDelegateImpl.java529 // Invalidate if the panel menu hasn't been created before this.
855 // Make sure that the options panel is closed. This is mainly used when we're using a
877 final PanelFeatureState panel = findMenuPanel(menu.getRootMenu());
878 if (panel != null) {
879 return cb.onMenuItemSelected(panel.featureId, item);
1124 // If the panel is already prepared, then perform the shortcut using it.
1137 // If the panel is not prepared, then we may be trying to handle a shortcut key
1138 // combination such as Control+C. Temporarily prepare the panel then mark it
1139 // unprepared again when finished to ensure that the panel will again be prepared
1314 // Don't open an options panel o
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DWatchListDecorLayout.java34 * Supports one panel with the gravity set to top, and one panel with gravity set to bottom.
322 /** Only set scrolling for the panel if there is a change in its translationY. */
323 private void setScrolling(View panel, float translationY) { argument
324 if (panel.getTranslationY() != translationY) {
325 panel.setTranslationY(translationY);
/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneWindow.java196 * The panel that is prepared or opened (the most recent one if there are
197 * multiple panels). Shortcuts will go to this panel. It gets set in
573 * Prepares the panel to either be opened or chorded. This creates the Menu
574 * instance for the panel and populates it via the Activity callbacks.
576 * @param st The panel state to prepare.
577 * @param event The event that triggered the preparing of the panel.
578 * @return Whether the panel was prepared. If the panel should not be shown,
607 // dispatches menu-related events before the panel is prepared.
612 // Init the panel stat
3096 callOnPanelClosed(int featureId, PanelFeatureState panel, Menu menu) argument
[all...]

Completed in 216 milliseconds