英文:
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
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论