Home
last modified time | relevance | path

Searched refs:mTopPanel (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
DWatchHeaderListView.java32 private View mTopPanel; field in WatchHeaderListView
57 if (mTopPanel == null) { in addView()
65 mTopPanel = v; in setTopPanel()
78 if (v == null && mTopPanel != null && !mTopPanel.isRootNamespace()) { in findViewTraversal()
79 return mTopPanel.findViewById(id); in findViewTraversal()
87 if (v == null && mTopPanel != null && !mTopPanel.isRootNamespace()) { in findViewWithTagTraversal()
88 return mTopPanel.findViewWithTag(tag); in findViewWithTagTraversal()
97 if (v == null && mTopPanel != null && mTopPanel != childToSkip in findViewByPredicateTraversal()
98 && !mTopPanel.isRootNamespace()) { in findViewByPredicateTraversal()
99 return (T) mTopPanel.findViewByPredicate(predicate); in findViewByPredicateTraversal()
[all …]
DWatchListDecorLayout.java52 private View mTopPanel; field in WatchListDecorLayout
90 if (gravity == Gravity.TOP && mTopPanel == null) { in onAttachedToWindow()
91 mTopPanel = child; in onAttachedToWindow()
103 mTopPanel = null; in onDetachedFromWindow()
216 measureAndGetHeight(mTopPanel, widthMeasureSpec, heightMeasureSpec)); in onMeasure()
233 if (mListView == null || (child != mTopPanel && child != mBottomPanel)) { in onMeasure()
290 if (mTopPanel != null) { in onScrollChanged()
294 setScrolling(mTopPanel, in onScrollChanged()
295 firstChild.getY() - mTopPanel.getHeight() - mTopPanel.getTop()); in onScrollChanged()
298 setScrolling(mTopPanel, -mTopPanel.getHeight()); in onScrollChanged()
[all …]