I have a table of “items” which is retrieved from the “internet”. This table can be pretty huge, and I need to put it in a Form.
I initially did it using a scrollView, however the list is too long, and “may” cause user frustration.
I have looked at the contact picker, this is a standard API and I would like to replicate something like that.
I have an Activity which shows the list of “items”. Should I call this activity and handle the picking of the items from within here?
What im looking for if there is a class that I should inherit instead of doing it this way.
I ended up opening the Items List view from the form, and setting the ItemClick event to add the item details into the Intent and send it back. Also, makes me use existing forms 🙂
Avoided creating something like a content provider as i do not want to share this with other applications