我发现这是一个愚蠢的问题,但我似乎无法在网上找到答案。我想将2个TextView添加到LinearLayout,并希望它们在彼此之下显示结果,而不是连接。
ll.addView(textview);
ll.addView(textViewReply);
显示:
HelloHello to you too!
虽然我希望它是:
Hello
Hello to you too!
我认为线性布局每行只能存储一个对象。有人可以解释一下吗? : - )
答案 0 :(得分:1)
在添加textview
之前尝试ll.setOrientation(LinearLayout.VERTICAL)