ImageView not refreshing/reflecting changes

前端 未结 8 1149
星月不相逢
星月不相逢 2021-01-03 22:26

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

8条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-03 22:54

    invalidate() not worked. Try hack :

        imageView.setImageURI(null);
        imageView.setImageURI(newUri);
    

提交回复
热议问题