Android在其他文字视图上方添加textview

时间:2015-07-03 16:08:12

标签: java android textview android-linearlayout relativelayout

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

textview1
textview2
textview3

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

textview4
textview1
textview2
textview3

但截至目前,textview4属于textview3

textviews属于线性布局。

如何达到预期效果?

谢谢。

1 个答案:

答案 0 :(得分:1)

您需要使用:

addView (View child, int index)

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