android - webview is opening browser when I reload the page -




during webview in android.
click button , should goes other url.
problem opens browser when transfer.
let have jsp page button click

        <a class="button button4" href="#" onclick="return amtscreensave.file_save(document.forms[0]);">save file</a>  var amtscreensave = (function() {     return {         file_save : function(thisform) {             console.log("file_save");             console.log(thisform);             thisform.action = "/mobile/filesave.do";             thisform.submit();         },         file_cancel : function(thisform) {             console.log(thisform);             thisform.action = "/mobile/filecancel.do";             thisform.submit();         }     }  })(); 

when activated webview goes browser
how prevent action??





wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -