I know this question has probably been asked before, but I haven't found any solutions that work for my unique situation...
(Just to clarify, I am a beginner when it comes to java/android programming)
So here's the deal - I'm attempting to show a javascript alert as a toast message. However, all the solutions I've come across involve using the WebChromeClient
and the OnJsAlert
, which doesn't quite align with what I need. I'm currently utilizing the WebViewClient
and I've customized a lot of its features that are not supported by the Chrome counterpart. My question is: Is there a way to retrieve javascript alerts from a page so I can manage them using the standard WebViewClient
? Thanks in advance!