Android 在其他文本视图之上添加文本视图

Android add textview above other textviews

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

textview1
textview2
textview3

(然后当用户创建一个新的文本视图时)

textview4
textview1
textview2
textview3

但截至目前,textview4 位于 textview3 之下

文本视图在线性布局下。

怎样才能达到预期的效果?

谢谢。

您需要使用:

addView (View child, int index)

索引是视图中的位置(如果你想让它在顶部则为 0)