image view Shared preferences
问题 I'm newbie in android. My question is how to set shared preferences in image view. I want to shared the image to another activity. Please help me because I'm stocked on it.. Please help me the explain me clearly and codes. Thank you. 回答1: The "standard" way to share data across Activities is usign the putExtraXXX methods on the intent class. You can put the image path in your intent: Intent intent = new Intent(this,MyClassA.class); intent.putExtra(MyClassA.IMAGE_EXTRA, imagePath);