java.lang.RuntimeException:无法恢复活动(设置从相机捕获的图像时)

时间:2013-05-16 10:54:20

标签: android exception android-activity android-tabhost device

我正在尝试在我的应用中使用相机类。我只想点击图片并在imageview上设置,然后将其发布到某个网址上。发布网址工作正常但有时问题发生在点击任何图片并恢复到我导航到相机应用程序的相同活动。它在HTC野火(2.2版本)上工作正常,但有时会出现异常(失败几率为1/25)但是当我在索尼xperia miro或三星标签(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

此处提供完整的代码。

按钮Onclick。

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:
}

完整例外显示在以下图片Exception

活动EventIppoPaymentActivity

public class EventsIppoPaymentActivity扩展TabActivity {

TabWidget mTabWidget;
TabHost tabHost;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);


  setTabs() ;
  } 
private void setTabs()
    {
       addTab("Home", R.drawable.home_icon, TabGroup1.class);
       addTab("Search", R.drawable.search_icon, TabGroup2.class);
       addTab("Add Event", R.drawable.addevent_icon, TabGroup3.class);
       addTab("Support", R.drawable.support_icon, TabGroup4.class);
    }

private void addTab(String labelId, int drawableId, Class<?> c)
{
    TabHost tabHost = getTabHost();
    Intent intent = new Intent(this, c);
    TabHost.TabSpec spec = tabHost.newTabSpec("tab" + labelId); 

    View tabIndicator = LayoutInflater.from(this).inflate(R.layout.tab_indicator, getTabWidget(),        false);
    TextView title = (TextView) tabIndicator.findViewById(R.id.title);
    title.setText(labelId);
    ImageView icon = (ImageView) tabIndicator.findViewById(R.id.icon);
    icon.setImageResource(drawableId);

    spec.setIndicator(tabIndicator);
    spec.setContent(intent);
    tabHost.addTab(spec);
}

}

0 个答案:

没有答案