Significance of RecyclerView setHasFixedSize(true)

Keywords: REST

From: https://blog.csdn.net/wsdaijianjun/article/details/74735039


  1. <span style="font-size:18px;">    /** 
  2.      * RecyclerView can perform several optimizations if it can know in advance that RecyclerView's 
  3.      * size is not affected by the adapter contents. RecyclerView can still change its size based 
  4.      * on other factors (e.g. its parent's size) but this size calculation cannot depend on the 
  5.      * size of its children or contents of its adapter (except the number of items in the adapter). 
  6.      * <p> 
  7.      * If your use of RecyclerView falls into this category, set this to {@code true}. It will allow 
  8.      * RecyclerView to avoid invalidating the whole layout when its adapter contents change. 
  9.      * 
  10.      * @param hasFixedSize true if adapter changes cannot affect the size of the RecyclerView. 
  11.      */  
  12.     public void setHasFixedSize(boolean hasFixedSize) {  
  13.         mHasFixedSize = hasFixedSize;  
  14.     }</span>  

Note that when you know that the change of Item in the Adapter will not affect the width and height of RecyclerView, you can set it to true to let RecyclerView avoid recalculating the size.

Set it to true and call notifyDataSetChanged(). It is found that the size has been recalculated. It seems that there is an error in understanding. Let's see where to use this mHasFixedSize.


First, it is used in onMeasure. This is related to the custom LayoutManager, regardless of it.

The rest is the triggerUpdateProcessor() method:

  1. <span style="font-size:18px;">   void triggerUpdateProcessor() {  
  2.             if (POST_UPDATES_ON_ANIMATION && mHasFixedSize && mIsAttached) {  
  3.                 ViewCompat.postOnAnimation(RecyclerView.this, mUpdateChildViewsRunnable);  
  4.             } else {  
  5.                 mAdapterUpdateDuringMeasure = true;  
  6.                 requestLayout();  
  7.             }  
  8.         }</span>  

Take a look at the calls to the triggerUpdateProcessor method

onItemRangeChanged(),

onItemRangeInserted(),

onItemRangeRemoved(),

onItemRangeMoved()

In this way, it is clear that when calling the add, delete, change and insert method of Adapter, the final result will be based on the value of mHasFixedSize to determine whether requestLayout() is needed or not;

Take a look at the code executed by notifyDataSetChanged(). Finally, onChanged is called and requestLayout() is called to measure the width and height again.

  1. @Override  
  2. public void onChanged() {  
  3.     assertNotInLayoutOrScroll(null);  
  4.     mState.mStructureChanged = true;  
  5.   
  6.     setDataSetChangedAfterLayout();  
  7.     if (!mAdapterHelper.hasPendingUpdates()) {  
  8.         requestLayout();  
  9.     }  
  10. }  

Summary: when we are sure that the change of Item will not affect the width and height of RecyclerView, we can set setHasFixedSize(true), and refresh the RecyclerView through the add, delete, change and insert method of Adapter instead of notifyDataSetChanged(). (in fact, it can be set to true directly. When you need to change the width and height, use notifyDataSetChanged() to refresh the whole.)

  1. public final void notifyItemChanged(int position) {  
  2.     mObservable.notifyItemRangeChanged(position, 1);  
  3. }  
  4.   
  5. public final void notifyItemChanged(int position, Object payload) {  
  6.     mObservable.notifyItemRangeChanged(position, 1, payload);  
  7. }  
  8.   
  9. public final void notifyItemRangeChanged(int positionStart, int itemCount) {  
  10.     mObservable.notifyItemRangeChanged(positionStart, itemCount);  
  11. }  
  12.   
  13. public final void notifyItemRangeChanged(int positionStart, int itemCount, Object payload) {  
  14.     mObservable.notifyItemRangeChanged(positionStart, itemCount, payload);  
  15. }  
  16.   
  17.   
  18. public final void notifyItemInserted(int position) {  
  19.     mObservable.notifyItemRangeInserted(position, 1);  
  20. }  
  21.   
  22.   
  23. public final void notifyItemMoved(int fromPosition, int toPosition) {  
  24.     mObservable.notifyItemMoved(fromPosition, toPosition);  
  25. }  
  26.   
  27. public final void notifyItemRangeInserted(int positionStart, int itemCount) {  
  28.     mObservable.notifyItemRangeInserted(positionStart, itemCount);  
  29. }  
  30.   
  31. public final void notifyItemRemoved(int position) {  
  32.     mObservable.notifyItemRangeRemoved(position, 1);  
  33. }  
  34.   
  35. public final void notifyItemRangeRemoved(int positionStart, int itemCount) {  
  36.     mObservable.notifyItemRangeRemoved(positionStart, itemCount);  
  37. }  

Posted by zhopa on Tue, 31 Mar 2020 03:41:24 -0700