I'm developing a college project that consists of a schedule that works with SQLite database. It may sound trivial, but the way I'm doing it makes things a bit more complex.
When I click 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 getting 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 get the data from the listview item and send it to another activity directly after the click, I would just do one action, which would be the update. So how can I do this that I plan?