I\'ve a widget with nine-patch image background. The image was saved in /sdcard/mydir/bgs.
When I try to load a image with setImageViewUri method, I\'ve this error:<
I think you are entering SD card path manually. Instead of manually entering SD Card path you should get storage path like this :
File extStore = Environment.getExternalStorageDirectory(); String mPath = extStore.getAbsolutePath() + "/mydir/bgs";