ImageView 在屏幕方向更改时变为空白

发布于 2024-11-10 00:29:02 字数 302 浏览 1 评论 0原文

我正在使用下面的行来设置我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

香草可樂 2024-11-17 00:29:02

正确的方法是将位图保存在 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

慢慢从新开始 2024-11-17 00:29:02

尝试将 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.

俏︾媚 2024-11-17 00:29:02

您应该在 onSaveInstanceState 方法中保存 capturedImage,然后检查 onRestoreInstanceState 方法以查看是否已保存它,然后重新执行代码你有上面的。请参阅使用保存实例状态保存 Android Activity 状态的答案一个很好的例子来说明这是如何运作的。

You should save capturedImage in your onSaveInstanceState method, and then check in your onRestoreInstanceState 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文