android app to build dynamic user input forms with sms delivery
I am new to Android programming . I have just gone through the basic tutorials present in the samples folder when i downloaded the sdk
My task is to now build an app that does the following :
- Create a form with 3 fields namely name , address and phone number
- Values of these fields will be present in local mysql lite database of android and will be displayed as a drop down list when i click the respective fields
- after doing so , when i click the submit but开发者_如何学运维ton , the app should send an sms to a particular contact , here again the list of contacts must be displayed as per what i have provided in the mysql lite database as a drop down list giving me the option to send a to a particular contact
I would appreciate any suggestions for the same
Thanks
I would start off just making an activity which takes text input from the user, then puts that into a sms and sends it. You can find a tutorial for sending sms here.
Once you have that working i would suggest that you then change it from text imput to your drop down menus(spinner widget) from your SQLite database, you can find a tutorial for spinners here, but rather than using a xml list to populate the spinner (as done in the tutorial) you would get your data from SQLite and put that into an array to use in your spinner.
Hope this helps get you started.
精彩评论