0
I’m developing a college project that consists of an agenda that works with Sqlite database. It may seem trivial, but the way I’m proceeding makes things a little more complex.
I want that, when clicking on a list item, the user is directed to another Activity with a form, whose fields will already be loaded with the data shown in the clicked Listview. I already tried to do taking the position of the item and using as ID to be returned, but I would have to do two operations, one to read in the database and one to update. If there is a way to take the data from the listview item and send it to another Activity directly after the click, I would do only one action, which would be the update. So how can I do this thing that I plan?
It would be good to add what you have already done. So it facilitates in building the answer.
– Wakim