不幸的是,相机已停止错误 android 6.0.0

Posted

技术标签:

【中文标题】不幸的是,相机已停止错误 android 6.0.0【英文标题】:unfortunately the camera has stopped error android 6.0.0 【发布时间】:2018-01-15 15:27:01 【问题描述】:

我在 6.0 版本的 android Studio 中使用模拟器时遇到了上述崩溃,但在我的 6.0.1 版本的设备上没有崩溃。模拟器有时会启动相机,但它大多会崩溃,logcat 中没有任何内容可以为我指明正确的方向。有没有人知道这里可能会发生什么?

另外,这里是它实际通过时的图像。 Image_capture_camera

private File createImageFile() throws IOException

    // Create an image file name
    String timeStamp = new SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss").format(new Date());
    String imageFileName = "" + timeStamp;
    File storageDir = getActivity().getExternalFilesDir(Environment.DIRECTORY_PICTURES);
    File image = File.createTempFile(
            imageFileName,  /* prefix */
            ".jpg",         /* suffix */
            storageDir      /* directory */
    );

    Name = imageFileName;
    // Save a file: path for use with ACTION_VIEW intents
    mCurrentPhotoPath = image.getAbsolutePath();
    return image;


private void dispatchTakePictureIntent()

    Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
    // Ensure that there's a camera activity to handle the intent
    if (takePictureIntent.resolveActivity(getActivity().getPackageManager()) != null)
    
        // Create the File where the photo should go
        File photoFile = null;
        try
        
            photoFile = createImageFile();
        
        catch (IOException ex)
        
            // Error occurred while creating the File
        
        // Continue only if the File was successfully created
        if (photoFile != null)
        
            photoURI = FileProvider.getUriForFile(getActivity(),
                    "com.full.jusuf.snaphealth.fileprovider",
                    photoFile);
            takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
            startActivityForResult(takePictureIntent, REQUEST_IMAGE_CAPTURE);
        
    


@Override
public void onActivityResult(int requestCode, int resultCode, Intent data)

    if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == RESULT_OK)
    

        final Uri uri = photoURI;
        uri_data.add(new Timeline_Model(uri.toString(), Name));

        //save data to firebase
        FirebaseStorage storage = FirebaseStorage.getInstance();
        StorageReference storageRef = storage.getReference().child("users").child(FirebaseAuth.getInstance().getCurrentUser().getUid());
        storageRef.child(FirebaseAuth.getInstance().getCurrentUser().getUid()).child(Name).putFile(uri).addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() 
            @Override
            public void onSuccess(UploadTask.TaskSnapshot taskSnapshot)
            
                String uri1  = taskSnapshot.getDownloadUrl().toString();
                FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
                DatabaseReference databaseReference = FirebaseDatabase.getInstance().getReference();
                if (user != null)
                
                    long Count = System.currentTimeMillis();
                    databaseReference.child("users").child(user.getUid()).child("image_uri").child("image" + Count).setValue(new Timeline_Model(uri1, Name));
                
            
        );

        PopulateGallery();
    

Logcat:

08-08 02:22:26.576 17275-17330/com.full.jusuf.snaphealth V/FA: Recording user engagement, ms: 10526
08-08 02:22:26.576 17275-17330/com.full.jusuf.snaphealth V/FA: Using measurement service
08-08 02:22:26.576 17275-17330/com.full.jusuf.snaphealth V/FA: Connecting to remote service
08-08 02:22:26.580 17275-17330/com.full.jusuf.snaphealth D/FA: Logging event (FE): user_engagement(_e), Bundle[firebase_event_origin(_o)=auto, engagement_time_msec(_et)=10526, firebase_screen_class(_sc)=MainActivity, firebase_screen_id(_si)=4121746325476785971]
08-08 02:22:26.593 17275-17330/com.full.jusuf.snaphealth V/FA: Using measurement service
08-08 02:22:26.593 17275-17330/com.full.jusuf.snaphealth V/FA: Connection attempt already in progress
08-08 02:22:26.593 17275-17330/com.full.jusuf.snaphealth V/FA: Activity paused, time: 917202
08-08 02:22:26.611 17275-17330/com.full.jusuf.snaphealth D/FA: Connected to remote service
08-08 02:22:26.611 17275-17330/com.full.jusuf.snaphealth V/FA: Processing queued up service tasks: 2
08-08 02:22:26.678 17275-17357/com.full.jusuf.snaphealth D/EGL_emulation: eglMakeCurrent: 0x7f9ce78225e0: ver 3 1 (tinfo 0x7f9cdb3c2d40)
08-08 02:22:26.679 17275-17357/com.full.jusuf.snaphealth E/Surface: getSlotFromBufferLocked: unknown buffer: 0x7f9cdb6c53e0

【问题讨论】:

当您的应用在 6.0 上运行时,您必须为相机添加运行时权限。 【参考方案1】:

您可能知道,Android 23 完全改变了权限政策,因此如果您针对 23+(或最新版本,您可能会这样做),那么您的问题很可能就在这里

File storageDir = getActivity().getExternalFilesDir(Environment.DIRECTORY_PICTURES);
File image = File.createTempFile(
        imageFileName,  /* prefix */
        ".jpg",         /* suffix */
        storageDir      /* directory */
);

或这里

Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

(阅读:Android M Camera Intent + permission bug?)

确保你有

 < uses-permission android:name="android.permission.CAMERA" />

 < uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

在您的清单中,然后转到设置 -> 应用程序 -> yourApp -> 权限并确保选中存储和相机。如果您的崩溃不再通过手动设置的权限重现,请继续阅读 https://developer.android.com/training/permissions/requesting.html 并向您的应用程序使用的所有功能添加运行时权限请求。

【讨论】:

感谢您的回复,但没有成功。手动设置权限做了同样的事情。奇怪的是,在模拟器上启动相机应用程序可以工作,但显示的图形故障与我上面链接的图像相同。 那么可能是一些硬件问题,创建另一个具有随机不同设置的模拟器,并将相机设置为模拟而不是您现在可能拥有的网络摄像头N,然后重试。 我在带有模拟相机的新模拟器上遇到了同样的问题。 但它不能在任何真实设备上重现?删除所有 logcat 过滤(包、标签)并观察所有输出,没有 java/android 堆栈跟踪的硬件崩溃可能更难发现。尝试隔离问题【参考方案2】:

我已经为此苦苦挣扎了很长时间,然后看到从 Android API 23 及更高版本开始,您需要请求运行时权限,阅读 Android 文档中的Runtime Permissions,它应该可以解决您的问题

【讨论】:

这个也不走运,除了nexus 5 6.0.1和6.0 api 23上的模拟器之外,它在所有测试的设备上都可以正常工作。我已经在包括s8和note 5的硬件上进行了测试,运行6.0 .1 和 7.0 并且没有问题。不过,我似乎无法找到原因。

以上是关于不幸的是,相机已停止错误 android 6.0.0的主要内容,如果未能解决你的问题,请参考以下文章

android中的“不幸的是,MyApp已停止”错误

Android 应用程序错误 - 不幸的是,您的应用程序已停止

出现错误:-不幸的是,应用程序已在 android 中停止

GCM Android:不幸的是,GCM 演示已停止

不幸的是,Apps已停止在某些Android设备上

Eclipse 中的 Android 项目,不幸的是“appName”已停止