HomeSort by relevance Sort by last modified time
    Searched full:expandableview (Results 1 - 18 of 18) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
ExpandableViewState.java 28 import com.android.systemui.statusbar.ExpandableView;
140 * Applies a {@link ExpandableViewState} to a {@link ExpandableView}.
145 if (view instanceof ExpandableView) {
146 ExpandableView expandableView = (ExpandableView) view;
148 int height = expandableView.getActualHeight();
153 expandableView.setActualHeight(newHeight, false /* notifyListeners */);
156 float shadowAlpha = expandableView.getShadowAlpha();
161 expandableView.setShadowAlpha(newShadowAlpha)
    [all...]
StackScrollState.java 25 import com.android.systemui.statusbar.ExpandableView;
39 private WeakHashMap<ExpandableView, ExpandableViewState> mStateMap;
53 ExpandableView child = (ExpandableView) mHostView.getChildAt(i);
70 private void resetViewState(ExpandableView view) {
105 ExpandableView child = (ExpandableView) mHostView.getChildAt(i);
AmbientState.java 26 import com.android.systemui.statusbar.ExpandableView;
382 * @param expandableView the view to check
384 public boolean isAboveShelf(ExpandableView expandableView) {
385 if (!(expandableView instanceof ExpandableNotificationRow)) {
386 return expandableView.isAboveShelf();
388 ExpandableNotificationRow row = (ExpandableNotificationRow) expandableView;
395 public boolean isDozingAndNotPulsing(ExpandableView view) {
NotificationStackScrollLayout.java 86 import com.android.systemui.statusbar.ExpandableView;
123 ExpandableView.OnHeightChangedListener, NotificationGroupManager.OnGroupChangeListener,
219 private ExpandableView.OnHeightChangedListener mOnHeightChangedListener;
296 private HashSet<ExpandableView> mClearTransientViewsWhenFinished = new HashSet<>();
328 private ArrayList<ExpandableView> mTmpSortedChildren = new ArrayList<>();
354 private Comparator<ExpandableView> mViewPositionComparator = new Comparator<ExpandableView>() {
356 public int compare(ExpandableView view, ExpandableView otherView) {
638 private void notifyHeightChangeListener(ExpandableView view)
    [all...]
StackStateAnimator.java 30 import com.android.systemui.statusbar.ExpandableView;
84 private ArrayList<ExpandableView> mTransientViewsToRemove = new ArrayList<>();
139 final ExpandableView child = (ExpandableView) mHostLayout.getChildAt(i);
160 private void initAnimationProperties(StackScrollState finalState, ExpandableView child,
179 private void adaptDurationWhenGoingToFullShade(ExpandableView child,
195 private boolean applyWithoutAnimation(ExpandableView child, ExpandableViewState viewState,
219 final ExpandableView child = (ExpandableView) mHostLayout.getChildAt(i);
343 for (ExpandableView transientViewsToRemove : mTransientViewsToRemove)
    [all...]
StackScrollAlgorithm.java 27 import com.android.systemui.statusbar.ExpandableView;
108 ExpandableView v = algorithmState.visibleChildren.get(i);
146 ExpandableView child = algorithmState.visibleChildren.get(i);
261 ExpandableView lastView = null;
271 ExpandableView v = (ExpandableView) hostView.getChildAt(i);
355 ExpandableView v) {
385 ExpandableView child = algorithmState.visibleChildren.get(i);
428 ExpandableView child) {
514 private void clampPositionToShelf(ExpandableView child
    [all...]
ViewState.java 30 import com.android.systemui.statusbar.ExpandableView;
220 if (!(view instanceof ExpandableView) || !((ExpandableView) view).willBeGone()) {
271 if (child instanceof ExpandableView) {
273 alphaChanging &= !((ExpandableView) child).willBeGone();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DragDownHelper.java 56 private ExpandableView mStartingChild;
168 private void handleExpansion(float heightDelta, ExpandableView child) {
187 private void cancelExpansion(final ExpandableView child) {
230 private ExpandableView findView(float x, float y) {
ExpandableView.java 37 public abstract class ExpandableView extends FrameLayout {
55 public ExpandableView(Context context, AttributeSet attrs) {
572 void onHeightChanged(ExpandableView view, boolean needsAnimation);
579 void onReset(ExpandableView view);
ExpandableOutlineView.java 38 * Like {@link ExpandableView}, but setting an outline for the height and clipping.
40 public abstract class ExpandableOutlineView extends ExpandableView {
NotificationListContainer.java 132 void onHeightChanged(ExpandableView view, boolean animate);
StackScrollerDecorView.java 32 public abstract class StackScrollerDecorView extends ExpandableView {
NotificationShelf.java 268 ExpandableView child = (ExpandableView) mHostLayout.getChildAt(i);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ExpandHelper.java 36 import com.android.systemui.statusbar.ExpandableView;
42 ExpandableView getChildAtRawPosition(float x, float y);
43 ExpandableView getChildAtPosition(float x, float y);
48 int getMaxExpandHeight(ExpandableView view);
97 private ExpandableView mResizedView;
140 ExpandableView mView;
143 public void setView(ExpandableView v) {
210 private ExpandableView findView(float x, float y) {
211 ExpandableView v;
394 private boolean isFullyExpanded(ExpandableView underFocus)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
HeadsUpTouchHelper.java 25 import com.android.systemui.statusbar.ExpandableView;
78 ExpandableView child = mStackScroller.getChildAtRawPosition(x, y);
NotificationPanelView.java 63 import com.android.systemui.statusbar.ExpandableView;
85 ExpandableView.OnHeightChangedListener,
546 ExpandableView child = (ExpandableView) mNotificationStackScroller.getChildAt(i);
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
NotificationViewHierarchyManagerTest.java 248 public void onHeightChanged(ExpandableView view, boolean animate) {}
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollAdapterView.java     [all...]

Completed in 304 milliseconds