Searched refs:recyclable (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java5650 * if and only if they are recyclable, so this method does not check it again.
5655 * still recyclable since Adapter wants to do so.
10338 if (!isRecyclable()) sb.append(" not recyclable(" + mIsRecyclableCount + ")");
10348 * recyclable will not be reused for other items until setIsRecyclable() is
10354 * @param recyclable Whether this item is available to be recycled. Default value
10359 public final void setIsRecyclable(boolean recyclable) { argument
10360 mIsRecyclableCount = recyclable ? mIsRecyclableCount - 1 : mIsRecyclableCount + 1;
10369 } else if (!recyclable && mIsRecyclableCount == 1) {
10371 } else if (recyclable && mIsRecyclableCount == 0) {
10375 Log.d(TAG, "setIsRecyclable val:" + recyclable
[all...]
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DRecyclerView.java6082 * if and only if they are recyclable, so this method does not check it again.
6087 * still recyclable since Adapter wants to do so.
11085 if (!isRecyclable()) sb.append(" not recyclable(" + mIsRecyclableCount + ")");
11095 * recyclable will not be reused for other items until setIsRecyclable() is
11101 * @param recyclable Whether this item is available to be recycled. Default value
11106 public final void setIsRecyclable(boolean recyclable) { argument
11107 mIsRecyclableCount = recyclable ? mIsRecyclableCount - 1 : mIsRecyclableCount + 1;
11116 } else if (!recyclable && mIsRecyclableCount == 1) {
11118 } else if (recyclable && mIsRecyclableCount == 0) {
11122 Log.d(TAG, "setIsRecyclable val:" + recyclable
[all...]

Completed in 78 milliseconds