需要将数据从一个活动传递到另一个引用数据库
在我的应用程序中,我想将一些字符串数据保存到数组中。
然后,该数据应该由 ListView
中的另一个活动获取。
我正在使用数据库来存储数据。但每次我都将数据存储在不同的表中。现在据我所知,不可能从定义的数据库中获取所有可用的表。
所以我想做的是,在创建表名时将其存储到Array
中。并将其显示在ListView
中。
现在,当我按下特定的 ListIndex
时,它将获取该表的数据。
这可能吗?
In my application I want to save some string data into an array.
This data should then be fetched by the another activity in a ListView
.
I am using a database to store the data. But every time I'm storing data in different tables. Now as per my knowledge it is not possible to fetch all the available tables from a defined database.
So what I'm trying to do is, store the table name into the Array
while it is created. And displaying it in the ListView
.
Now when I press on the perticular ListIndex
, it will fetch the data of that table.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用表名称与数据数组的映射
编辑
对于您关于发送表名称的评论:
Use a Map of Table Name against Array of Data
EDIT
For your comment about sending table names: