I am writing an application that starts with loading activity in the loading activity, the app requests html from the web and HTML Parsing it, then it sends the parsing result to the main activity. There are several tabs in the main activity, and the content of these tabs is based on the result of parsing. For example, the result of parsing is a list of strings ["apple", "banana", "orange"], and I need to pass this list in the main list, so that the main activity is to create three tabs in the name of three fruits Able to
I would like to know if there is any way to pass a list of BTW, is it a common way of doing this?
Many thanks.