You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was using constraint layout for my RecyclerView Item, and had to change my layout in the OnCreateViewHolder i had something like:
if (requestRTL) itemView.setLayoutDirection(View.LAYOUT_DIRECTION_RTL);
It worked for version 1.1.0 but after updating the lib to 2.2.0, it failed. I realized this late and had to change back to 1.1.0. Maybe its a bad practice? or is this a bug?
I was using constraint layout for my RecyclerView Item, and had to change my layout in the OnCreateViewHolder i had something like:
if (requestRTL) itemView.setLayoutDirection(View.LAYOUT_DIRECTION_RTL);It worked for version 1.1.0 but after updating the lib to 2.2.0, it failed. I realized this late and had to change back to 1.1.0. Maybe its a bad practice? or is this a bug?