i created a user login page with database using SQLite, my requirement is to provide the information of the particular usr to provide the information to user after logged in and allow him to modify the details. please help me..
thanks in advance..
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It seems like you are trying to implement a small form that allows people to update their details and save them.
Your form will need to check provided user details against your database in order to authenticate them, and if they’re authenticated should query the database for the fields that you want and display them to the user. When the user clicks your save button you will need to updated those fields and commit the changes.
For a good introduction to using
SQLiteDatabases in Android including reading and writing values, take a look at the quick Notepad Tutorial as well as the guide to using databases. For your buttons and user input, see the Common Tasks and How To Do Them in Android page.