2

私が作成しているアプリでは、電子メールで画像を送信したいので、次のコードを使用しています。

send.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            String name = textName.getText().toString();
            String phone = textPhone.getText().toString();
            String message = textMessage.getText().toString();

            Intent i = new Intent(Intent.ACTION_SEND);
            i.setType("message/rfc822");
            i.putExtra(Intent.EXTRA_EMAIL  , new String[]{"my@email.com"});
            i.putExtra(Intent.EXTRA_SUBJECT, "You have a new email");
            i.putExtra(Intent.EXTRA_TEXT   , "Name: "+ name + '\n' + 
                                             "Phone: " + phone + '\n' + 
                                             "Text" + message);
            i.putExtra(Intent.EXTRA_STREAM, Uri.parse("android.resource://com.rbz.jewlerysearchengine/" + imageAdapter.mThumbIds[position]));
            try {
                startActivity(Intent.createChooser(i, "Send mail..."));
            } catch (android.content.ActivityNotFoundException ex) {
                Toast.makeText(ContactUs.this, "There are no email clients installed.", Toast.LENGTH_SHORT).show();
            }
        }

何らかの理由で、画像ファイルが添付されたメールを受け取りましたが、ファイルの種類の拡張子がありません。その理由は何ですか?

4

0 に答える 0