Carlos Carrizales
Carlos Carrizales

Reputation: 2340

Receive a plain text instead of image

I share a image from social network and catch it with my app (following this link), but it catch a plain text instead of image, i try to parse to uri and url but it didn't work

void handleSendText(Intent intent) {
    String sharedText2 = intent.getStringExtra(Intent.EXTRA_TEXT);
    //Bn1.setText("Descargar Texto plano");
    if (sharedText2 != null) { // check if is null or not
        File folder = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/Imgs/");
        if(!folder.exists()){folder.mkdir();}// create folder
        int diagonal = sharedText2.indexOf(":");
        String sharedText = sharedText2.substring(diagonal + 1, sharedText2.length());
        sharedText = sharedText.replace(" ", "");
        if (!sharedText.startsWith("htt")) {// check if it's starts with http or not
            sharedText = "https" + sharedText.substring(0, sharedText.indexOf("?"));
        }
        c = 1;
        Bitmap bitmap = null;
        Uri imageUri = Uri.parse(sharedText); // parse to uri
        Time now = new Time(); // time
        now.setToNow();
        String nombre = "Imagen-" + now.weekDay + "-" + now.month + "-" + now.year + "-" + now.minute + "_" + now.second;// name of the image
        if (imageUri != null) {
            try {
                bitmap = MediaStore.Images.Media.getBitmap(this.getContentResolver(), imageUri);
            } catch (IOException e) {
                e.printStackTrace();
            }
            File file = null;
            file = new File(folder.getAbsoluteFile(), nombre + ".jpg");
            try {
                FileOutputStream out = new FileOutputStream(file);
                bitmap.compress(Bitmap.CompressFormat.JPEG, 90, out);
                //bitmap.compress(Bitmap.CompressFormat.WEBP, 90, out);
                out.flush();
                out.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
            Tv1.setMovementMethod(new ScrollingMovementMethod());
            Tv1.setText("Es una imagen\n" + imageUri + "\n" + file + "\nnombre:\n" + nombre); // show the name of the variables
            if (bitmap == null) {
                Tv1.setText(sharedText2 + "\n\nsharedtext\n" + sharedText);
            } else {
                Tv1.setText("SI quedo\n" + sharedText);
            }
        }
    }
}

Upvotes: 0

Views: 87

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006779

EXTRA_TEXT is supposed to be plain text. EXTRA_STREAM, on the other hand, is supposed to be a content: Uri (though often you will get a file: Uri instead). Presumably, the information you seek will be in EXTRA_STREAM, not EXTRA_TEXT.

Upvotes: 1

Related Questions