I\'m using a photo picker intent to choose an image and write it to an application-private file. Most of my important source code is shown below. Once I press a button and p
I would suggest this thing solution. After trying lot of solutions i found this one worked for me.
final Handler handler = new Handler(); handler.postDelayed(new Runnable() { @Override public void run() { //Do something after 1000ms ivProfilePic.setImageBitmap(bitImage); } }, 1000);