I am making an application in which i want to open a local html page in the browser. I am able to open google.com. But when i\'m opening local html file. But i am getting fo
You need to use the Android Assetmanager to read a file in assets
AssetManager am = context.getAssets(); InputStream is = am.open("trialhtml.html");