Does anyone know if the following project is achievable for an Android app:
That project is the twin one of a very simple bilingual iOS App consisting of a PDF file embedded in a UIWebview.
I searched a lot on the subject, and I can't really tell if that twin project is achievable. If so, would there be an example of it somewhere ?
Thanks very much !
You can keep the file in Assets directory and you can use Asset Manager to access the file.
AssetManager assetManager = getAssets();
try {
InputStream tinstr = assetManager.open("myjpg.pdf");
mDefaultThumbnail = BitmapFactory.decodeStream (tinstr);
tinstr.close ();
} catch (IOException ioe) {
ioe.printStackTrace ();
}