最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Android WebView canGoBack always true - Stack Overflow

programmeradmin1浏览0评论

I have a WebView that is loading social media pages. I have overridden the Back button to call the goBack method on the WebView until canGoBack() returns false. Then it calls super.onBackPressed(). The problem is that Twitter and YouTube use Javascript in such a way that canGoBack() returns true unless you tap the back button 4 times really quickly.

I've tried checking the original url with the current url, but the page has a different url than the one that gets passed in.

Does anyone know a way to have the back button call the WebView's goBack method until you are at the beginning, then call super.onBackPressed?

I have a WebView that is loading social media pages. I have overridden the Back button to call the goBack method on the WebView until canGoBack() returns false. Then it calls super.onBackPressed(). The problem is that Twitter and YouTube use Javascript in such a way that canGoBack() returns true unless you tap the back button 4 times really quickly.

I've tried checking the original url with the current url, but the page has a different url than the one that gets passed in.

Does anyone know a way to have the back button call the WebView's goBack method until you are at the beginning, then call super.onBackPressed?

Share Improve this question edited Sep 27, 2016 at 10:12 Volo 29.5k12 gold badges99 silver badges126 bronze badges asked May 16, 2012 at 14:55 toadzkytoadzky 2613 silver badges13 bronze badges 1
  • 1 6 years and still no 'real solution' – Denny Commented Jul 25, 2018 at 23:38
Add a ment  | 

2 Answers 2

Reset to default 1

Well, it's not ideal but you may track the navigation history manually by using an array (or just an integer to be increased and decreased) and push the current url into it every time it changes and pop the last url from it when you press the back button, and if the array is empty (or the integer is 0) you call super.onBackPressed().
To execute code when the url changes, you can override the method boolean shouldOverrideUrlLoading (WebView view, WebResourceRequest request) of the WebViewClient (link to the documentation).
This way the web pages' javascript can't interfere with how you handle the back button.

I had similar problem, but in my case the problem was that I, when overriding the WebViewClient's shouldOverrideUrlLoading(), I checked if the url was the correct one, and if it was I was loading that url in my webView and returning false after that which shouldn't be done. So I just returned false and it started working correctly. Hope I helped someone.

发布评论

评论列表(0)

  1. 暂无评论