It's interesting for the RecyclerView to know if its size (width and height dimensions) depends on the adapter content to avoid expensive layout operations. If the RecyclerView knows in advance that its size doesn't depend on the adapter content, then it will skip checking if its size should change every time an item is added or removed from the adapter. This is especially important because inserting an deleting elements can happen very often.
If the size of the RecyclerView (the RecyclerView itself)...
...doesn't depend on the adapter content:
mRecyclerView.setHasFixedSize(true);
...depends on the adapter content:
mRecyclerView.setHasFixedSize(false);
If you check the RecyclerView class you'll see it in more details because as of right now mHasFixedSize isn't used in that many places in that class.
Setting it as true doesn't mean that the RecyclerView size is fixed, just means it won't change because of change in the adapter content. For example the RecyclerView size can change because of a size change on its parent.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…