i wanna display image saved on the D://foldername//foldername//filename from my computer on the android emulator using eclipse and also how to display it from a server?
as i am accessing the data from the server and also the images are saved on the server
i wanna display image saved on the D://foldername//foldername//filename from my computer on the android
Share
Unless you’re running a web server which provides public access to the image, I don’t think you can display an image from your computer using a path like that. You either need to include the image in the
assetsorres/drawablefolders within the app, or have the image accessible through a web server which you can load from within the app using the method described in this question.