当单击项目中的特定列表时。它会加载特定列表中的数据

发布于 2024-10-17 05:15:38 字数 79 浏览 1 评论 0原文

当单击项目中的特定列表时。它会加载特定列表中的数据并将该数据发送到另一个活动,并在该活动的 edittext 中设置该数据。如何完成?请帮助我?

when the particular list in the item is clicked .it loads the data in the particular list and send that data to the another activity and set that data in edittext in that activity .how it can be done?pls help me??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的背包 2024-10-24 05:15:38

没有人会做你的工作,发布一些代码,我们会在你遇到困难时帮助你。
一般来说,您可以使用 OnClick 方法中的 Intent 来执行此操作

示例:

private static final int REQUEST_EDIT = 1;
...
 Intent intent = new Intent(this, MyEditActivity.class);
 intent.putExtra("module", m);
 intent.putExtra("position", listPosition);
 startActivityForResult(intent, REQUEST_EDIT);
...

Nobody will do your work, post some code and we'll help you where you get stuck.
In general you do this with an Intent in the OnClick method

Example:

private static final int REQUEST_EDIT = 1;
...
 Intent intent = new Intent(this, MyEditActivity.class);
 intent.putExtra("module", m);
 intent.putExtra("position", listPosition);
 startActivityForResult(intent, REQUEST_EDIT);
...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文