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

/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java3826 * if and only if they are recyclable, so this method does not check it again.
3831 * still recyclable since Adapter wants to do so.
7318 if (!isRecyclable()) sb.append(" not recyclable(" + mIsRecyclableCount + ")");
7328 * recyclable will not be reused for other items until setIsRecyclable() is
7334 * @param recyclable Whether this item is available to be recycled. Default value
7337 public final void setIsRecyclable(boolean recyclable) { argument
7338 mIsRecyclableCount = recyclable ? mIsRecyclableCount - 1 : mIsRecyclableCount + 1;
7347 } else if (!recyclable && mIsRecyclableCount == 1) {
7349 } else if (recyclable && mIsRecyclableCount == 0) {
7353 Log.d(TAG, "setIsRecyclable val:" + recyclable
[all...]

Completed in 67 milliseconds