Skip to content Skip to sidebar Skip to footer

Android - Set Backgroundresource To Imageview From Sharedpreferences

I am trying to set a BackgroundResource to a ImageView from a sharedpreferences.. My Code is, On Click Event of Button from Activity 1 SharedPreferences settings; S

Solution 1:

Try

image_id = image_display.getInt("key_image_id", 0); 

as you need int not String.

Post a Comment for "Android - Set Backgroundresource To Imageview From Sharedpreferences"