Sending Google Form response programmatically via Android

I have developed a couple of other applications that not only did preference management, some custom lists, but also LAN communication, but that's about it. I am creating an employee visit app that allows an employee to check in when they come in, have lunch, dine and go out hours, all through the app. Once all four are entered, I want it to submit it via a google form to a google spreadsheet, which I can then use to calculate the hours and long time for all their information.

How can I integrate Google Form Response program submission in Android?

Thanks in advance, -John

+3


source to share


1 answer


Google Form is just a fancy interface for users to submit responses, which are stored in a Google spreadsheet. What is it - there is nothing special about it. To accomplish this on Android, you just need to customize your UI with the appropriate widgets to capture responses. Then save this data to a Google spreadsheet.



To work with the Google Spreadsheet API, you can check this tutorial from Google.

+2


source







All Articles