Android-按下按钮时将文本视图添加到布局
现在我有一个文本字段,其下方有一个按钮(add+)。
我想做到这一点,以便每次在文本字段中输入文本并按下“添加”按钮时,都会将一个新的文本视图添加到其下方的垂直布局中,并包含用户在该字段中键入的文本。
我不想简单地使文本视图不可见,然后在单击时可见,因为我希望他们能够使用他们键入的任何文本添加多个文本视图。
So right now I have a text field with a button (add+) below it.
I would like to make it so every time text is entered into the Text Field, and the Add button is pressed, a new text view is added to a vertical layout below it with the text that the user typed in the field.
I do not want to simply make a text view invisible, then visible when clicked, because I would like them to be able to add more than one text view with whatever text they type.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这段代码包含了你想要的内容。 (该视图显示一个 EditText 和一个按钮,单击按钮后文本将添加到 LinearLayout)
并且 xml 是:
This code contains what you want. (The view show an EditText and a Button, after you click on the button the text will add to the LinearLayout)
And the xml is: