0

Samsung GalaxyS2、Nexus などの一部の Samsung デバイスにオーディオ ファイルを添付できません。何が問題なのかわかりません。他のすべてのデバイスを添付できます。この問題について誰か助けてください。私のコードは次のとおりです。 :

Intent sendIntent = new Intent(Intent.ACTION_SEND);

            sendIntent.putExtra("sms_body",
                    getResources().getText(R.string.Message));
            sendIntent.setClassName("com.android.mms",
                    "com.android.mms.ui.ComposeMessageActivity");


            AssetManager mngr = getAssets();
            InputStream path = null;
            try {
                path = mngr.open("*.mp3");
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

            BufferedInputStream bis = new BufferedInputStream(path, 1024);

            // get the bytes one by one
            int current = 0;
            //
            try {
                while ((current = bis.read()) != -1) {

                    baf.append((byte) current);
                }
            } catch (IOException e) {
                // /TODO Auto-generated catch block
                e.printStackTrace();
            }
            byte[] bitmapdata = baf.toByteArray();

            File file = new File(Environment.getExternalStorageDirectory()
                    .getAbsolutePath(), "*.mp3");

            // if (file.exists() == true) {
            // } else {
            // Log.v("directory is created", "new  dir");
            // file.mkdir();
            // }

            FileOutputStream fos;

            try {
                fos = new FileOutputStream(file);
                fos.write(bitmapdata);
                fos.flush();
                fos.close();
            } catch (FileNotFoundException e) {
                // handle exception
            } catch (IOException e) {
                // handle exception
            }

            final File file1 = new File(Environment
                    .getExternalStorageDirectory().getAbsolutePath(),
                    "*.mp3");
            Uri uri = Uri.fromFile(file1);

            Log.e("Path", "" + uri);

            sendIntent.putExtra(Intent.EXTRA_STREAM, uri);
            sendIntent.setType("audio/mp3");
            // sendIntent.putExtra(Intent.EXTRA_STREAM, mms_uri.toString());

            startActivity(Intent.createChooser(sendIntent, ""));
            // startActivity(sendIntent);

        } catch (Exception e) {
            Toast.makeText(getApplicationContext(),
                    "SMS faild, please try again later!", Toast.LENGTH_LONG)
                    .show();
            e.printStackTrace();
        }
4

2 に答える 2

1

を呼び出してクラス名を明示的に設定しないでくださいsetClassName()代わりに、ここで説明されているように、アクション、タイプ、およびエクストラを設定するだけです。

于 2012-12-26T06:54:40.990 に答える
0

デバイスで使用可能な ExternalStorage、つまり sd カードがあると想定しています。S2 または Nexus に SD カードがない可能性があります。この問題は以前に見たことがあります。

于 2013-01-16T16:20:47.857 に答える