Sending Google Form response programmatically via Android

北战南征 提交于 2019-12-22 08:49:54

问题


I've developed a couple other apps that did nothing more than preference management, some custom lists, and LAN communications but that's about it. I'm building a employee attendance app that allows the employee to register when they clock in, lunch out, lunch in, and clock out, all via the app. Once all four have been entered, I want it to send it via a Google Form to a Google spreadsheet that I can then use to calculate there hours and have a long on all of their information.

How would I go about integrating submitting a Google Form Response programmatically in Android?

Thanks in advance, -John


回答1:


A Google Form is just a fancy UI for having users submit responses which get stored as a Google spreadsheet. That's it - there's nothing special about it. To accomplish this on Android you just need to setup your UI with the appropriate widgets to capture responses. Then save that data to a Google spreadsheet.

To work with the Google Spreadsheet API you can check out this guide from Google.



来源:https://stackoverflow.com/questions/27867847/sending-google-form-response-programmatically-via-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!