Home
last modified time | relevance | path

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

/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DRecyclerView.java9291 static final int FLAG_NOT_RECYCLABLE = 1 << 4; field in RecyclerView.ViewHolder
9703 mFlags |= FLAG_NOT_RECYCLABLE; in setIsRecyclable()
9705 mFlags &= ~FLAG_NOT_RECYCLABLE; in setIsRecyclable()
9718 return (mFlags & FLAG_NOT_RECYCLABLE) == 0 && in isRecyclable()
9727 return (mFlags & FLAG_NOT_RECYCLABLE) != 0; in shouldBeKeptAsChild()
9735 return (mFlags & FLAG_NOT_RECYCLABLE) == 0 && ViewCompat.hasTransientState(itemView); in doesTransientStatePreventRecycling()