-3

I view web pages with your view, but I get an error page not found How can I solve?

  wv.loadUrl("file:///src/main/assets/index.html");
Selahattin
  • 63
  • 1
  • 2
  • 6

1 Answers1

1

Use:

wv.loadUrl("file:///android_asset/index.html");

src/main/assets/ is a path on your development machine. It is not a path on the device.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491