Home | History | Annotate | Download | only in widget

Lines Matching defs:mTopPanel

32     private View mTopPanel;
57 if (mTopPanel == null) {
65 mTopPanel = v;
78 if (v == null && mTopPanel != null && !mTopPanel.isRootNamespace()) {
79 return mTopPanel.findViewById(id);
87 if (v == null && mTopPanel != null && !mTopPanel.isRootNamespace()) {
88 return mTopPanel.findViewWithTag(tag);
97 if (v == null && mTopPanel != null && mTopPanel != childToSkip
98 && !mTopPanel.isRootNamespace()) {
99 return (T) mTopPanel.findViewByPredicate(predicate);
106 return mTopPanel == null ? super.getHeaderViewsCount()
107 : super.getHeaderViewsCount() + (mTopPanel.getVisibility() == GONE ? 0 : 1);
112 if (adapter != null && mTopPanel != null) {
117 ((WatchHeaderListAdapter) getAdapter()).setTopPanel(mTopPanel);
123 private View mTopPanel;
133 mTopPanel = v;
137 return (mTopPanel == null || mTopPanel.getVisibility() == GONE) ? 0 : 1;
179 ? mTopPanel : super.getView(position - topPanelCount, convertView, parent);