I have a LinearLayout with two views
<LinearLayout>
<TextView />
<Textview />
</LinearLayout>
Through my program, I want to add a third TextViewbetween these two existing ones TextViews. ” This was easy to do with parameter RelativeLayoutwith parameter layout_below. How to do it for LinearLayout?
source
share