Android应用程序通过电子邮件发送图像

时间:2012-11-05 11:01:52

标签: android android-camera android-camera-intent

再一次,我在学习android的过程中一直在这里。在最终开发我的简单小应用程序之后,我尝试使用本机应用程序的一些好处。

因此,项目一,制作一个可以通过电子邮件发送图像的页面(来自图库或相机)

基本上它是一个选择并通过电子邮件发送,但我甚至不知道从哪里开始。

我找到了其他人要问的一些代码; Android App Take/ Email Photo

我尝试了这个,但是从eclipse中获得了各种错误,重新添加到 downloadedPic 部分。

如果有人可以请一看并告诉我最好的方法,这将是惊人的。像往常一样抱歉我的乞丐愚蠢,但我想每个人都要在某处学习

这是我现在的.JAVA

public class Photos extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_photos);
    getActionBar().setDisplayHomeAsUpEnabled(true);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.activity_photos, menu);
    return true;
}

这是我现在的.XML     

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Please chose the options below to select and upload photos into the 
    DCC for the selected project..."
    tools:context=".Photos"
    android:textAppearance="?android:attr/textAppearanceMedium" />


</LinearLayout>

2 个答案:

答案 0 :(得分:2)

首先,您应该使用文件

获取图像存储路径
 File *photo = new File(Environment.getExternalStorageDirectory()+"/Android/data/"+getApplicationContext().getPackageName()+"/Fault", imagename+".png");

然后将该文件路径转换为Uri

Uri imageuri = Uri.fromFile(photo); 

最后使用您的imageuri

通过电子邮件发送图片
Intent send_report = new Intent(Intent.ACTION_SEND);
                                        send_report.putExtra(Intent.EXTRA_EMAIL, new String[]{ email_emailid}); 
                                        send_report.putExtra(Intent.EXTRA_SUBJECT, email_subject);
                                        send_report.putExtra(Intent.EXTRA_STREAM, imageuri);
                                        send_report.putExtra(Intent.EXTRA_TEXT, email_body);  
                                        send_report.setType("text/plain");
                                        send_report.setType("image/png");
                                        startActivityForResult(Intent.createChooser(send_report, "Choose an Email client"), 77);

希望它有所帮助。

答案 1 :(得分:1)

首先获取您的图片

 // Get Image form mnt/sdcard/YOUR_FLODER/my_image.png    
    ImageView my_Image = (ImageView)findViewById(R.id.my_Image);    
    Imagepath="/sdcard/YOUR_FLODER/"+my_iamge+".png";
     bitmap = BitmapFactory.decodeFile(Imagepath);

抓取邮件地址

// This Will fetch merchant's Email id from Deivce.
    Pattern emailPattern = Patterns.EMAIL_ADDRESS; // API level 8+

    AccountManager manager =(AccountManager)getSystemService(ACCOUNT_SERVICE);
    //Account[] accounts = AccountManager.get(getApplicationContext()).getAccounts();
    Account[] accounts = manager.getAccounts();

    for (Account account : accounts) 
    {
        if (emailPattern.matcher(account.name).matches()) 
        {
             possibleEmail = account.name;
        }
    }

发送点击事件:

        Intent i = new Intent(android.content.Intent.ACTION_SEND);
        i.setType("image/png");
        i.putExtra(Intent.EXTRA_CC,new String[]{possibleEmail});  
        i.putExtra(android.content.Intent.EXTRA_SUBJECT, "Mail With Image attachment");
        startActivity(Intent.createChooser(i2, "Send Email..."));

在The End Photos.java

public class Photos extends Activity
{
     @Override
public void onCreate(Bundle savedInstanceState) 
{
     super.onCreate(savedInstanceState);
    setContentView(R.layout.Activity_Photos);

          // your image fetching code
          // fetch mail code 
          // write button click event 
               // put intent code in click event

    }
}

所以现在希望您获得完整的代码。