ImageView 在屏幕方向更改时变为空白
我正在使用下面的行来设置我的 ImageView。
Bitmap bm = Media.getBitmap(getContentResolver(), capturedImage);
Bitmap bm1=Bitmap.createScaledBitmap(bm, 300, 300,true);
pic.setImageBitmap(bm1);
但是当我旋转手机时,imageView 变成空白。 谁能帮助我。 任何帮助表示赞赏。
I am using the below line to set my ImageView.
Bitmap bm = Media.getBitmap(getContentResolver(), capturedImage);
Bitmap bm1=Bitmap.createScaledBitmap(bm, 300, 300,true);
pic.setImageBitmap(bm1);
But when I rotate my mobile, the imageView becomes blank.
Can anyone help me.
Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正确的方法是将位图保存在 onRetainNonConfigurationInstance() 中,
这是一个示例:
http://developer.android.com/guide/topics/resources/runtime -changes.html
Proper way to it is to save the bitmap in onRetainNonConfigurationInstance()
Here is an example:
http://developer.android.com/guide/topics/resources/runtime-changes.html
尝试将
android:configChanges="orientation|keyboardHidden"
添加到 AndroidManifest 中的 Activity 标记。请查看此处了解更多详细信息。Try adding
android:configChanges="orientation|keyboardHidden"
to your Activity tag in your AndroidManifest. Take a look here for more details.您应该在
onSaveInstanceState
方法中保存capturedImage
,然后检查onRestoreInstanceState
方法以查看是否已保存它,然后重新执行代码你有上面的。请参阅使用保存实例状态保存 Android Activity 状态的答案一个很好的例子来说明这是如何运作的。You should save
capturedImage
in youronSaveInstanceState
method, and then check in youronRestoreInstanceState
method to see if you saved it and then re-execute the code you have above. See the answer of Saving Android Activity state using Save Instance State for an excellent example of how this would work.