How to add child views to a LinearLayout in reverse order?

Viewed 97

I am dynamically creating TextViews and adding those views in a LinearLayout.
I want to show the recently added TextView to the user.
But the problem is that the LinearLayout is adding the views in a top-down manner.
How can I add the child views in reverse order ?

1 Answers
Related