0

アプリでカメラ クラスを使用しようとしています。写真をクリックしてイメージビューに設定し、それをいくつかのURLに投稿したいだけです。URLへの投稿は正常に機能していますが、写真をクリックしてカメラアプリに移動している場所から同じアクティビティに戻るときに問題が発生することがあります。HTCワイルドファイア(2.2バージョン)では正常に動作しますが、例外が発生することがあります(失敗の可能性は1/25)が、Sony xperia miroまたはsamsungタブ(4.0バージョン)でテストすると、同じ例外が何度も発生します(失敗の可能性は20/25)。 . アプリが例外なくスムーズに実行される場合があるため、問題が存在する場所を取得できませんが、4.0 以降のバージョンでは何度も強制終了しますが、正常に動作することもあります。

例外は:java.lang.RuntimeException: Unable to resume activity {fable.eventippo/fable.eventippo.EventsIppoPaymentActivity}: java.lang.RuntimeException: Failure delivering result ResultInfo{who=tabHome, request=1, result=-1, data=Intent { dat=content://media/external/images/media/17271 }} to activity {fable.eventippo/fable.eventippo.EventsIppoPaymentActivity}: java.lang.ClassCastException: fable.eventippo.Home cannot be cast to fable.eventippo.AddEvent

ここに完全なコードを示します。

ボタン オンクリック。

browse = (Button) findViewById(R.id.browse);
    browse.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            final CharSequence[] items = { "Camera", "Gallery" };
            AlertDialog.Builder builder = new AlertDialog.Builder(
                    getParent());
            builder.setTitle("Browse From");
            builder.setItems(items, new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int item) {
                    if (items[item] == "Camera") {
                        PackageManager pm = getPackageManager();

                        if (pm.hasSystemFeature(PackageManager.FEATURE_CAMERA)) {
                            Intent i = new Intent(
                                    android.provider.MediaStore.ACTION_IMAGE_CAPTURE);

                            i.putExtra(MediaStore.EXTRA_OUTPUT,
                                    MyFileContentProviders.CONTENT_URI);

                            getParent().startActivityForResult(i,
                                    CAMERA_REQUEST);

                        } else {

                            Toast.makeText(getParent(),
                                    "Camera is not available",
                                    Toast.LENGTH_LONG).show();

                        }
                    } else if (items[item] == "Gallery") {
                        try {

                            Intent intent = new Intent();
                            intent.setType("image/*");
                            intent.setAction(Intent.ACTION_GET_CONTENT);
                            getParent().startActivityForResult(
                                    Intent.createChooser(intent,
                                            "Select Picture"),         PICK_IMAGE);
                        } catch (Exception e) {
                            Toast.makeText(getParent(), e.getMessage(),
                                    Toast.LENGTH_LONG).show();
                            Log.e(e.getClass().getName(), e.getMessage(), e);
                        }

                    }
                }

            });
            AlertDialog alert = builder.create();
            alert.show();

        }
    });

活動結果について:

public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);

    Bundle bn = data.getExtras();
    switch (requestCode) {
    case PICK_IMAGE:
        if (resultCode == Activity.RESULT_OK) {
            Uri selectedImageUri = data.getData();
            String filepath = null;

            try {
                // OI FILE Manager
                String filemanagerstring = selectedImageUri.getPath();
                // MEDIA GALLERY
                String selectedImagePath = getPath(selectedImageUri);
                // logo.setImageURI(selectedImageUri);
                if (selectedImagePath != null) {
                    filepath = selectedImagePath;
                } else if (filemanagerstring != null) {
                    filepath = filemanagerstring;
                } else {
                    Toast.makeText(getApplicationContext(), "Unknown path",
                            Toast.LENGTH_LONG).show();
                    Log.e("Bitmap", "Unknown path");
                }
                if (filepath != null) {
                    // /upload.setText(filepath);
                    decodeFile(filepath);
                } else {
                    // filePath = null;
                    bitmap = null;
                }
            } catch (Exception e) {
                Toast.makeText(getApplicationContext(), "Internal error",
                        Toast.LENGTH_LONG).show();
                Log.e(e.getClass().getName(), e.getMessage(), e);
            }
        }
        break;
    case CAMERA_REQUEST:
        if (resultCode == Activity.RESULT_OK) {

            File out = new File(getFilesDir(), "newImage.jpg");

            if (!out.exists()) {

                Toast.makeText(getBaseContext(),

                "Error while capturing image", Toast.LENGTH_LONG)

                .show();

                return;

            }

            String filepath = out.getAbsolutePath().toString();
            decodeFile(filepath);

        }
        break;
    default:
    }

完全な例外は次の画像に示されていますここに例外が表示されます

さらに何か必要な場合は、教えてください。

前もって感謝します

回答待ち

4

1 に答える 1