Android Question Is it possible to view page source loaded into webview

cenyu

Active Member
Licensed User
Longtime User
Hello frients,
I have one theoretical question...
Into one my app i have to load html content from https web site...
My question is it possible for user to do some actions and view html page source already loaded into WebView
I am not speak about HttpUtils with Job.Getstring or other ways witch allow me - as developer to view or show html page content to user...

My question is IT IS POSSIBLE USER WITHOUT MY PERMISSION VIEW HTML PAGE SOURCE WHEN PAGE IS ALREADY LOADED TO WEBVIEW

I must protect https url links from user
 
Last edited:

JohnC

Expert
Licensed User
Longtime User
To my knowledge, there is no "View Source" pop-up menu option in Webview.
 
Upvote 0

TILogistic

Expert
Licensed User
Longtime User
You just need to protect the URL link you are calling.

Remember it is an APK package, and you can unpack and view its URL.

WEBVIEW: Once you have loaded your URL, you can only reload the page.

P.S.
There are many tools that you can unzip APK and see the code of your application.
 
Upvote 0
Top