I have an android application in which I have some images. after encryption the image is not displayed in the mobile phone but it works well in emulator. My images are in drawable folder. In emulator it worke but when I installed the apk on mobile it don't work. can anyone tell me the answer.
Thanks
wv.getSettings().setBuiltInZoomControls(true);
if (check_lang.equals("Marathi")) {
getstr = getResources().getResourceEntryName(
Marathi_Arati_ID_Array[imageIds[currentIndex]]);
String data = "<body><center>" + "<img align="+"middle"+" src=\"" + getstr + ".png"
+ "\"/></center></body>";
wv.loadDataWithBaseURL("file:///android_res/drawable/", data,
"text/html", "utf-8", null);
} else if (check_lang.equals("Hindi")) {
getstr = getResources().getResourceEntryName(
Hindi_Arati_ID_Array[imageIds[currentIndex]]);
String data = "<center><body>" + "<img align="+"middle"+" src=\"" + getstr + ".jpg"
+ "\"/></body></center>";
wv.loadDataWithBaseURL("file:///android_res/drawable/", data,
"text/html", "utf-8", null);
}