views:

53

answers:

1

hi,

do you help me please... I tried :

ImageButton imgbt=(ImageButton)findViewById(R.id.imgbutton);

Uri imgUri=Uri.parse("/data/data/MYFOLDER/myimage.png"); (i suppose it was saved in this location)

imgbt.setImageUri(imgUri);

but i diden't see nothing [simply a void button]

thanx

A: 

It should be

Uri imgUri=Uri.parse("file:///data/data/MYFOLDER/myimage.png");

bhups
thanx but i tried this too, still nothing :(
ilredelweb