Can you help me please? I\'ve tried :
ImageButton imgbt=(ImageButton)findViewById(R.id.imgbutton); Uri imgUri=Uri.parse(\"/data/data/MYFOLDER/myimage.png\");
Its best to avoid building the path by hand, try :
imgbt.setImageUri(Uri.fromFile(new File("/data/data/....")));