I'm new to Android development so please bear with me.
So I am trying to use HttpURLRequest to retrieve a list of items and populate those into a RecyclerView. I am running the web request in a separate thread, but I am having a hard time figuring out how to get the results into the UI. I've tried updating the adapter from the other thread but it tells me I can't update from that thread.
So question is, what is best practice for fetching a list from the web and displaying the results in a RecyclerView.