0

ソーシャルネットワークから画像を共有し、アプリでキャッチします(このリンクをたどります)が、画像ではなくプレーンテキストをキャッチし、URIとURLに解析しようとしましたが、機能しませんでした

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);
            }
        }
    }
}
4

1 に答える 1

1

EXTRA_TEXTプレーンテキストである必要があります。EXTRA_STREAM一方、 は a であるはずcontent: Uriです (ただし、多くの場合、file: Uri代わりに a が返されます)。おそらく、求める情報はEXTRA_STREAMではなく にありEXTRA_TEXTます。

于 2016-03-09T16:07:49.257 に答える