0

我正在尝试开发一个用户输入表单,我在其中获取他的详细信息并将它们存储在我有他的姓名、电子邮件、地址、电话号码等字段的表单中。一个人可能有多个电子邮件或多个电话号码。他可以通过单击按钮来添加字段。

然后我想将用户输入的数据存储在共享首选项中。

我有个问题:

how do i retrieve data from dynamically added extra fields by the user?
I have maintained a count for dynamically added fields for each field criteria (like email, phone etc)

 but i am stuck at the point where i am supposed to retrieve the data when i need to store them in Shared Preferences.

请帮忙!先感谢您。

是否可以使用 ParentViewGroup.getChildCount() 之类的东西或其他东西?

4

1 回答 1

0

当然,您可以使用getChildCount()getChildAt()方法从ViewGroup.

但是,我认为更好的方法是在将它们添加到视图层次结构时保存对添加的视图的引用,并从这些引用中获取数据。

于 2013-01-29T01:32:43.153 回答