Home
last modified time | relevance | path

Searched refs:childView (Results 1 – 8 of 8) sorted by relevance

/packages/apps/TV/src/com/android/tv/guide/
DProgramGrid.java348 View childView = getChildAt(i); in getFirstVisibleChildIndex() local
349 int childTop = mLayoutManager.getDecoratedTop(childView); in getFirstVisibleChildIndex()
350 int childBottom = mLayoutManager.getDecoratedBottom(childView); in getFirstVisibleChildIndex()
367 View childView = getChildAt(firstVisibleChildIndex); in updateInputLogo() local
368 int childAdapterPosition = getChildAdapterPosition(childView); in updateInputLogo()
369 ((ProgramTableAdapter.ProgramRowViewHolder) getChildViewHolder(childView)) in updateInputLogo()
372 childView = getChildAt(i); in updateInputLogo()
373 ((ProgramTableAdapter.ProgramRowViewHolder) getChildViewHolder(childView)) in updateInputLogo()
375 childAdapterPosition = getChildAdapterPosition(childView); in updateInputLogo()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/customization/ui/section/
DConnectedSectionController.kt93 val childView = in add() constant
104 childView.layoutParams = in add()
114 childView.setBackgroundResource( in add()
133 parentView.addView(childView) in add()
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
DDocsItemDetailsLookup.java45 View childView = mRecView.findChildViewUnder(e.getX(), e.getY()); in getDocumentHolder() local
46 if (childView != null) { in getDocumentHolder()
47 ViewHolder holder = mRecView.getChildViewHolder(childView); in getDocumentHolder()
DDirectoryFragment.java665 View childView = mRecView.findChildViewUnder(e.getX(), e.getY()); in onContextMenuClick() local
666 ViewHolder holder = mRecView.getChildViewHolder(childView); in onContextMenuClick()
/packages/apps/Messaging/src/com/android/messaging/ui/
DCustomHeaderPagerListViewHolder.java118 final View childView = mListView.getChildAt(i); in toggleVisibilityForPendingTransition() local
119 if (childView != epicenterView) { in toggleVisibilityForPendingTransition()
120 childView.setVisibility(show ? View.VISIBLE : View.INVISIBLE); in toggleVisibilityForPendingTransition()
/packages/providers/MediaProvider/src/com/android/providers/media/photopicker/ui/
DTabContainerFragment.java157 final View childView = view.findViewById(R.id.picker_tab_recyclerview); in transformPage() local
158 if (childView != null) { in transformPage()
160 new WeakReference(childView)); in transformPage()
/packages/apps/Launcher3/src/com/android/launcher3/popup/
DArrowPopup.java654 View childView = ((ViewGroup) view).getChildAt(j); in fadeInChildViews() local
655 childView.setAlpha(alphaValues[0]); in fadeInChildViews()
656 ValueAnimator childFade = ObjectAnimator.ofFloat(childView, ALPHA, alphaValues); in fadeInChildViews()
/packages/apps/Launcher3/src/com/android/launcher3/
DCellLayout.java1491 ReorderPreviewAnimation(View childView, int mode, int cellX0, int cellY0, in ReorderPreviewAnimation() argument
1502 this.child = (T) childView; in ReorderPreviewAnimation()