在不同的活动中访问 TourArray 值

发布于 2024-11-25 08:28:11 字数 150 浏览 2 评论 0原文

我有一个要求,我将一些描述存储在扩展基本适配器的数组列表适配器中。我想在不同的 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 技术交流群。

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

发布评论

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

评论(1

单身狗的梦 2024-12-02 08:28:11

我假设您有 ArrayList 并且将其传递给自定义适配器,现在您想要获取特定对象并将其传递给 TourDescription 活动。

因此,您需要在适配器的 getItem() 方法内编写以下代码。

 @Override
 public Object getItem(int position) {
        // TODO Auto-generated method stub
        return itemList.get(position);
    }

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.

 @Override
 public Object getItem(int position) {
        // TODO Auto-generated method stub
        return itemList.get(position);
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文