Home
last modified time | relevance | path

Searched refs:nextView (Results 1 – 4 of 4) sorted by relevance

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
DFrameLayoutWithShadows.java428 ViewParent nextView = view.getParent(); in findParentShadowsView() local
429 while (nextView != null && !(nextView instanceof FrameLayoutWithShadows)) { in findParentShadowsView()
430 nextView = nextView.getParent(); in findParentShadowsView()
432 return (FrameLayoutWithShadows) nextView; in findParentShadowsView()
DScrollAdapterView.java1486 View nextView = getExpandableView(nextAdapterIndex);
1487 if (nextView == null) {
1491 nextView = getExpandableView(nextAdapterIndex);
1493 int nextScrollCenter = getScrollCenter(nextView);
1503 View nextView = getExpandableView(nextAdapterIndex);
1504 if (nextView == null) {
1508 nextView = getExpandableView(nextAdapterIndex);
1510 int nextScrollCenter = getScrollCenter(nextView);
2228 View nextView = getChildAt(nextExpandIdx);
2229 nextCenter = getScrollCenter(nextView);
[all …]
/packages/apps/TV/src/com/android/tv/menu/
DMenuLayoutManager.java264 MenuRowView nextView = mMenuRowViews.get(position); in getViewLayouts() local
265 if (isVisibleInLayout(position, nextView, rowsToAdd, rowsToRemove)) { in getViewLayouts()
533 MenuRowView nextView = mMenuRowViews.get(nextPosition); in setSelectedPositionSmooth() local
535 animators.add(createTranslationYAnimator(nextView, in setSelectedPositionSmooth()
536 nextLayoutRect.top + mRowScrollUpAnimationOffset - nextView.getTop(), in setSelectedPositionSmooth()
537 nextLayoutRect.top - nextView.getTop())); in setSelectedPositionSmooth()
538 animators.add(createAlphaAnimator(nextView, 0.0f, 1.0f, mFastOutLinearIn)); in setSelectedPositionSmooth()
543 MenuRowView nextView = mMenuRowViews.get(nextPosition); in setSelectedPositionSmooth() local
544 animators.add(createTranslationYAnimator(nextView, 0, mRowScrollUpAnimationOffset)); in setSelectedPositionSmooth()
545 animators.add(createAlphaAnimator(nextView, in setSelectedPositionSmooth()
[all …]
/packages/apps/Calendar/src/com/android/calendar/
DDayView.java2203 DayView nextView = (DayView) mViewSwitcher.getNextView(); in onDraw() local
2206 nextView.mTouchMode = TOUCH_MODE_INITIAL_STATE; in onDraw()
2208 nextView.onDraw(canvas); in onDraw()