如何将数据发送到新活动?
在用户单击列表项后,我需要开始一个新活动。新活动需要知道用户想要什么。它需要获取两条数据。第一个是类对象,另一个是 String[][]
。我可以以某种方式将此数据插入意图或内容中吗?如果是这样,我可以使用什么方法或其他什么方法?
好的,有捆绑附加功能,但如果没有大量额外的处理,我仍然无法将我想要的东西放在那里。
I need to start a new activity, after the user clicks on a list item. The new activity needs to know what the user wants. It needs to get two pieces of data. First is a class object and the other is a String[][]
. Can I somehow insert this data in the Intent or the Content? If so how or what other method may I use?
OK there is the bundle extras, but I still can't put what I want in there without a lot of extra processing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过大量挖掘后,我认为最好的答案是单例。网络搜索将为您提供有关它的详细信息。它基本上是一个具有单个实例的类。将数据放入其中后,您可以使用
访问它
类库 = Class.getInstance();
类的方法可以为您提供数据。
悬崖
After a lot of digging, I think the best answer is a Singleton. A web search will give you the particulars about it. it basically is a class with a single instance. Once you put that data in it, you can access it with
Class Lib = Class.getInstance();
The methods of the class can give you the data.
Cliff