I have a RecyclerView with GridLayoutManager. Items are added dynamically, span size is calculated based on text length. So far it looks like this:
I want to add even horizontal spacing for each row like so:
I assume i need to extend GridLayoutManager class and override some method, but not sure where to look. Perhaps there's some other way to implement this? I appreciate any help and hints.