android - A bit of guidance on making an application for a website -
i starting develop application uses same facilities of webpage, in android mobile application. using java on eclipse android sdk , wondering smartest way go this.
the website contains login , has facility access web drive (like google drive).
q1) should use jsoup load webpages in webview on app? , if how go controlling login , sessions? if not, way go doing this?
q2) possible include web drive in webview? i've tried searching around answer couldn't find much. want user able access after logging in can download files phone.
usually wouldn't post question without code i've got many mixed answers i'm not sure do.
thanks
q1) forget jsoup. webview
able directly load website remote url local version (stored under assets/
).
q2) "include drive in webview
"? webview
browser. can "include" whatever want, meaning loading url chrome
if have not experience android, easiest approach develop website in server usual (targeting mobile devices of course , using chrome developer tools simulate mobile screen), load url in webview
. later on can include other techniques storing parts of website application assets, or store whole webapp local website. may require (little) coding handle cookies , https certificates, , adjusting webapp run locally it's nothing hard , there's extensive documentation here in stackoverflow.
Comments
Post a Comment