Home
last modified time | relevance | path

Searched refs:PanelView (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DPanelBar.java41 ArrayList<PanelView> mPanels = new ArrayList<PanelView>();
42 PanelView mTouchingPanel;
62 public void addPanel(PanelView pv) { in addPanel()
77 if (v != null && v instanceof PanelView) { in setPanelHolder()
78 addPanel((PanelView) v); in setPanelHolder()
87 public PanelView selectPanelForTouch(MotionEvent touch) { in selectPanelForTouch()
109 final PanelView panel = selectPanelForTouch(event); in onTouchEvent()
137 public void startOpeningPanel(PanelView panel) { in startOpeningPanel()
141 for (PanelView pv : mPanels) { in startOpeningPanel()
154 public void panelExpansionChanged(PanelView panel, float frac, boolean expanded) { in panelExpansionChanged()
[all …]
DPhoneStatusBarView.java37 PanelView mLastFullyOpenedPanel = null;
38 PanelView mNotificationPanel;
67 public void addPanel(PanelView pv) { in addPanel()
95 public PanelView selectPanelForTouch(MotionEvent touch) { in selectPanelForTouch()
123 public void onPanelFullyOpened(PanelView openPanel) { in onPanelFullyOpened()
147 public void onTrackingStarted(PanelView panel) { in onTrackingStarted()
160 public void onTrackingStopped(PanelView panel, boolean expand) { in onTrackingStopped()
177 public void panelExpansionChanged(PanelView panel, float frac, boolean expanded) { in panelExpansionChanged()
DPanelHolder.java44 public int getPanelIndex(PanelView pv) { in getPanelIndex()
47 final PanelView v = (PanelView) getChildAt(i); in getPanelIndex()
53 public void setSelectedPanel(PanelView pv) { in setSelectedPanel()
DPanelView.java45 public abstract class PanelView extends FrameLayout { class
47 public static final String TAG = PanelView.class.getSimpleName();
177 public PanelView(Context context, AttributeSet attrs) { in PanelView() method in PanelView
381 mBar.onTrackingStopped(PanelView.this, expand); in onTrackingStopped()
388 mBar.onTrackingStarted(PanelView.this); in onTrackingStarted()
DNotificationPanelView.java56 public class NotificationPanelView extends PanelView implements