I have a form on my website with 3 input fields, Name, Email and Course and a submit button. Nothing fancy.
After developing an Android app I realized it would help people if they could fill in that form from the app and while a webview is what i could use, I realized that I could simply things for the user and add a Name and Email field in my Shared Prefs so that he’she wouldn’t have to re-write it every time + the Course field will be set via intent upon tapping on the list item (1).
1. {course titles are in a list that upon tapping will open a new activity with course details}
Now I simply wanna add a Send button in that activity that will automatically send the name and email from shared prefs and course from selected item directly to the form without having to use a web view and load the page and so on…and quite frankly, I have no idea at the moment on how to do this.