Android 编程帮助
我正在开发一个应用程序,其中一个布局中有文本视图,还有一个按钮可以将您发送到带有 Edittext 的第二个布局。每个编辑文本都是一个文本视图。如何使用第二个布局中的按钮将 textview 中的文本替换为 edittext 中的文本?
I'm working on an app where i have textview's in one layout and a button that sends you to a second layout with Edittext's. Every edittext is for an textview. How can i replace text in a textview with the text in edittext with a button in the second layout?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
你的意思是这样?
在方法 onCreate() 中:
然后,像这样重写 onClick 方法:
you mean like this ??
in the method onCreate() :
and then , ovverride the onClick method like this :
首先,您必须通过意图将 edittext 值传递给第一个活动。
例如:
然后在您的第一个活动中,您将必须获取此数据:
希望这可以帮助您。
First of all, you will have to pass the edittext value to the first activity through intent.
Eg:
Then inside your first activity, you will have to fetch this data as:
Hope this may help you.
据我了解,您希望第二个活动(我们称之为 Activity2)将文本传递回第一个活动(Activity1)。为此,您必须(一些代码来自:
更改打开 Activity2 的方式,以将
覆盖添加到 Activity1
更改 Activity2 上的按钮的功能
这应该将文本从 EditText 从 Activity2 返回到 Activity1。代码未经过测试
From what I understand is that you want your second activity (let's call it Activity2) to pass text back to the first one (Activity1). To do that, you have to (some code comes from :
Change the way you open Activity2 to
Add override to you Activity1
Change what button on your Activity2 does
This should return text from EditText from Activity2 to Activity1. Code was not tested
为文本视图创建一个变量来访问它,就像
在按钮单击侦听器上实现以下代码一样
create a variable for the textview to access it like
implement the following code on button click listener