我开发了一个可动态创建文本视图的应用程序,预期结果将是:

textview1
textview2
textview3


(然后,当用户创建新的textview时)

textview4
textview1
textview2
textview3


但截至目前,textview4在textview3下

文本视图在线性布局下。

如何获得理想的结果?

谢谢。

最佳答案

您需要使用:

addView (View child, int index)


索引是视图中的位置(如果要在顶部显示,则为0)

07-26 09:42