Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DRemoteCollectionItemsAdapter.java90 int[] layoutIds = IntStream.range(0, mItems.getItemCount()) in initLayoutIdToViewType() local
94 if (layoutIds.length > mViewTypeCount) { in initLayoutIdToViewType()
96 "Collection items uses " + layoutIds.length + " distinct layouts, which is " in initLayoutIdToViewType()
101 boolean[] processedLayoutIdIndices = new boolean[layoutIds.length]; in initLayoutIdToViewType()
106 for (int i = 0; i < layoutIds.length; i++) { in initLayoutIdToViewType()
107 int layoutId = layoutIds[i]; in initLayoutIdToViewType()
121 for (int i = 0; i < layoutIds.length; i++) { in initLayoutIdToViewType()
125 int layoutId = layoutIds[i]; in initLayoutIdToViewType()
129 int viewType = IntStream.range(lastViewType + 1, layoutIds.length) in initLayoutIdToViewType()