I have stored some of my information in an HTML file and put it in asset folder. However, when I want to show it, web page starts but it says that "Web page not available", while I have stored it in assets folder.
This is my code:
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.am_culture);
final FrameLayout frame01 = (FrameLayout) findViewById(R.id.ch_frame01);
final WebView wv = new WebView(this);
frame01.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
wv.loadUrl("file:///android_asset/people.html");
setContentView(wv);
}
});
}


file://android_asset/people.htmlthe extra/points it to the root of the device, which I do not think the file would be. – Richard J. Ross III May 17 '11 at 13:48