问题描述
我正在使用 ViewPager
显示表单的多个视图,例如在第一个视图中显示姓名和电子邮件,然后在其他视图中显示.
I am using ViewPager
to show the multiple views of the form, like name and email on first view and rest on others.
现在的问题是:
- 在第 1 页输入数据导航到第 2 页,然后到第 3 页.
- 返回第 1 页,数据不存在.
我在最后一页上有一个保存按钮,所以我还需要一种从那里的其他页面检索数据的方法.
I have a save button on the last page so I also need a way to retrieve the data from other pages there.
如果我能找到一种方法,我可以在第 1 页更改为第 2 页时保存数据,例如活动上的 onDestroy
方法.
If I can get a way I can save the data on page 1 when it is changed to page 2 like onDestroy
method on activity.
ViewPager
在这里不适合我的目的吗?
Is ViewPager
inappropriate for my purpose here?
推荐答案
我认为 ViewPager
适合这个目的.您需要做的就是将在第一个和第二个片段中输入的数据保存到您的父 Activity
并在您在最后一个片段中点击 Save
时获取它.
I think ViewPager
is fine for this purpose. All you need to do is to save data entered in first and second fragments to your parent Activity
and fetch it when you hit Save
in your last fragment.
检查 THIS 和 这个相关的SO问题
Check THIS and THIS related SO questions
这篇关于数据持久化 ViewPager的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!