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

/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java5652 * if and only if they are recyclable, so this method does not check it again.
5657 * still recyclable since Adapter wants to do so.
10345 if (!isRecyclable()) sb.append(" not recyclable(" + mIsRecyclableCount + ")");
10355 * recyclable will not be reused for other items until setIsRecyclable() is
10361 * @param recyclable Whether this item is available to be recycled. Default value
10366 public final void setIsRecyclable(boolean recyclable) { argument
10367 mIsRecyclableCount = recyclable ? mIsRecyclableCount - 1 : mIsRecyclableCount + 1;
10376 } else if (!recyclable && mIsRecyclableCount == 1) {
10378 } else if (recyclable && mIsRecyclableCount == 0) {
10382 Log.d(TAG, "setIsRecyclable val:" + recyclable
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java5825 * if and only if they are recyclable, so this method does not check it again.
5830 * still recyclable since Adapter wants to do so.
10733 if (!isRecyclable()) sb.append(" not recyclable(" + mIsRecyclableCount + ")");
10743 * recyclable will not be reused for other items until setIsRecyclable() is
10749 * @param recyclable Whether this item is available to be recycled. Default value
10754 public final void setIsRecyclable(boolean recyclable) { argument
10755 mIsRecyclableCount = recyclable ? mIsRecyclableCount - 1 : mIsRecyclableCount + 1;
10764 } else if (!recyclable && mIsRecyclableCount == 1) {
10766 } else if (recyclable && mIsRecyclableCount == 0) {
10770 Log.d(TAG, "setIsRecyclable val:" + recyclable
[all...]

Completed in 58 milliseconds