Track url redirection android -
i loading url webview
. url login page website . want track redirected urls last 1 when page loads after user logs in.
any idea how can done?
try :
webview.setwebviewclient(new webviewclient() { public boolean shouldoverrideurlloading(webview view, string url) { intent intent = new intent(this, youractivity.class); intent.putextra("url", url); startactivity(intent); return true; } }
also see here
Comments
Post a Comment