I need to add many views to the loop, while this snippet does this, the application will also have a navigation box and an action bar where the user can do something.
therefore, I would like this process not to a) slow down the application by blocking the user, b) it is preferable to add views to the background thread.
The dilemma is that I think the android does not like viewing views in a thread other than the UI, so what is the best fit for this? I plan to have a runtime view object visible as a fragment, while the rest of the views are created using addView and its associated calculations
Cqm source share