RecyclerView jerks while scrolling up when children vary in height
My UI consists of a RecyclerView that shows text entries in TextViews. The implementation isn't really complex, the ViewHolder stores the textView in a field, and onBindViewHolder just calls TextView.setText on it.
private List entries;
override fun onBindViewHolder(holder: TextHolder, position: Int) {
holder.textView.text = entries[position];
}
When the entries are short, there is no problem. However, when some or all the entries are long (like 2 or 3 times the length of the screen),...