LinearLayout新行而不是连接

时间:2013-10-18 13:32:25

标签: java android android-linearlayout

我发现这是一个愚蠢的问题,但我似乎无法在网上找到答案。我想将2个TextView添加到LinearLayout,并希望它们在彼此之下显示结果,而不是连接。

ll.addView(textview);
ll.addView(textViewReply);

显示:

HelloHello to you too!

虽然我希望它是:

Hello
Hello to you too!

我认为线性布局每行只能存储一个对象。有人可以解释一下吗? : - )

1 个答案:

答案 0 :(得分:1)

在添加textview

之前尝试ll.setOrientation(LinearLayout.VERTICAL)