Reejesh PK
Reejesh PK
> try to disable instant run That really helped. Thanks!
`content_container.setHasFixedWidth(true);` Setting this to false solved the issue, `content_container.setHasFixedWidth(false);` where content_container is ```
It is also good to have a look at the number of columns. **The number of columns should match the number of cells in each r**ow. It can be easily...
``` nacho_text_view.setOnItemClickListener { parent, view, position, id -> nacho_text_view.onItemClick(parent,view,position,id) } ``` This should work
> I have check above code but didnt work as apected, So i searched on StackOverflow and found `ShapeAppearanceModel` can be used to make corners for different sizes. > >...