android Fatal Exception: AsyncTask #5
问题 I'm having a problem with my asynctask code. here is my code. it said that it couldn't read row 0. @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (requestCode == PICK_IMAGE_REQUEST && resultCode == RESULT_OK && data != null && data.getData() != null) { Uri filePath = data.getData(); try { new ImageCompressionAsyncTask(getApplicationContext()).execute(String.valueOf(filePath)); } catch