Skip to content
Advertisement

Tag: android-adapter

How to show a RecyclerView (with data fetched from API) as a list item in another RecyclerView in android?

Want to achieve: a chatbot that returns weather forecast as a RecyclerView inside that chat item (which is in the outer RecyclerView) when the user inputs the word ‘weather’. I want the weather info to be the actual chat item. I have MessageAdapter and WeatherAdapter which deal with messages and weather forecast info respectively and I have difficulty handling the

Advertisement