在不同的活动中访问 TourArray 值
我有一个要求,我将一些描述存储在扩展基本适配器的数组列表适配器中。我想在不同的 Activity(例如 TourDescription)中访问这些值,并希望将其分配给其中的 editText。
谁能告诉我解决办法吗?
提前致谢,
特贾斯维
I have a requirement that, I am having some description stored in an array list adapter which extends Base Adapter. I want to access these values in a different Activity say TourDescription and want to assign then to the editText in that.
Can any one tell me the solution?
Thanks in advance,
Tejaswi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您有 ArrayList 并且将其传递给自定义适配器,现在您想要获取特定对象并将其传递给 TourDescription 活动。
因此,您需要在适配器的
getItem()
方法内编写以下代码。I assume you are having ArrayList and you are passing it to your custom adapter, now you want to get the particular Object and pass it to the TourDescription activity.
So for that you need to write the below code inside the
getItem()
method in your adapter.