Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android App--How to Embed a Google Form into a Fragment

I know this is a long shot, but I really can't find any tutorials for what I want to do. I am in the middle of creating an Android app, and the next thing I want to do is embed a Google Form into a fragment [as my app uses swipeable views]. I found this, but this doesn't seem to be the entire code. Does anyone know what the entire code looks like, or have any other solutions?

Thank you!

like image 709
Elena Avatar asked Jan 18 '26 22:01

Elena


1 Answers

You can create your own UI for all the fields and then send a POST http request with the data to the google form URL. You'll have to find the exact ids of the input elements and create a key value pair for the same. Here is an article which details the complete process with the required android code.

like image 167
Sourabh86 Avatar answered Jan 20 '26 21:01

Sourabh86