Searched refs:FLAG_NOT_RECYCLABLE (Results 1 – 2 of 2) sorted by relevance
9949 static final int FLAG_NOT_RECYCLABLE = 1 << 4; field in RecyclerView.ViewHolder10370 mFlags |= FLAG_NOT_RECYCLABLE; in setIsRecyclable()10372 mFlags &= ~FLAG_NOT_RECYCLABLE; in setIsRecyclable()10385 return (mFlags & FLAG_NOT_RECYCLABLE) == 0 in isRecyclable()10394 return (mFlags & FLAG_NOT_RECYCLABLE) != 0; in shouldBeKeptAsChild()10402 return (mFlags & FLAG_NOT_RECYCLABLE) == 0 && itemView.hasTransientState(); in doesTransientStatePreventRecycling()
10686 static final int FLAG_NOT_RECYCLABLE = 1 << 4; field in RecyclerView.ViewHolder11117 mFlags |= FLAG_NOT_RECYCLABLE; in setIsRecyclable()11119 mFlags &= ~FLAG_NOT_RECYCLABLE; in setIsRecyclable()11132 return (mFlags & FLAG_NOT_RECYCLABLE) == 0 in isRecyclable()11141 return (mFlags & FLAG_NOT_RECYCLABLE) != 0; in shouldBeKeptAsChild()11149 return (mFlags & FLAG_NOT_RECYCLABLE) == 0 && ViewCompat.hasTransientState(itemView); in doesTransientStatePreventRecycling()