Wednesday 16 December 2015

Retrieve Image file from parse.com and set on ImageView android


RETREIVE.jpg


It is very easy to retrieve image file from parse.com.
For example the image file name profilePicture is save on User class and I am going to retrieve the image below.
  1. ImageView profilePic = (ImageView)findViewById(R.id.image_profile);
  2. ParseFile imageFile = (ParseFile) currentUser.get("profilePicture");
  3.           FlexLogger.createLog("Image file :: " + imageFile);
  4.           imageFile.getDataInBackground(new GetDataCallback() {
  5.               @Override
Here is not the end…..
Read full blog at our highly specific C, Java, PHP, Javascript, iPhone, Android questions and answers forum about the topic described above "Retrieve Image file from parse.com and set on Image view Android". You can also learn much more about different programming technologies and can enhance your tech skills.

No comments:

Post a Comment