1

I want that a loading bar must be shown as page loads and when we click any link on that loaded page then also a loading bar must be shown as next clicked page loads....i am using webview.

maddy
  • 216
  • 4
  • 17

1 Answers1

1

Loading bar can be displayed by overriding onPageStarted() and onPageFinished() of webviewclient. Start displaying loading bar in onPageStarted and and make it invisible in onPageFinished.

user1969053
  • 1,750
  • 1
  • 12
  • 12
  • i did that but when another link is clicked on the page background image becomes black rather showing last page that we've opened... – maddy Jan 15 '13 at 06:45
  • can refer (http://stackoverflow.com/questions/9973767/progress-bar-only-work-on-loading-page) – user1969053 Jan 15 '13 at 07:23