代码正在捕获图像,但在我的图像查看器中没有显示。

huangapple go评论67阅读模式
英文:

The code is capturing image but it is not showing in my image viewer

问题

这是我的代码,我完全不知道为什么会崩溃。

这是我在安卓上的代码图片。我没有任何错误或警告可能会导致我的应用崩溃,但它还是会崩溃。

英文:

This is my code, and I have no idea why it is crashing.

This is the image of my code in android. I'm not having any error or warning that could make my app crash, but it is still crashing.

答案1

得分: 0

你应该考虑添加以下代码到你的 onActivityResult 的条件语句中:

if (resultCode == Activity.RESULT_OK) {
英文:

you should consider adding

 if (resultCode == Activity.RESULT_OK) {

to your if condition bellow the onActivityResult .

huangapple
  • 本文由 发表于 2020年9月15日 22:17:44
  • 转载请务必保留本文链接:https://go.coder-hub.com/63903868.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定