博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android 使用 Gmail 来发送邮件
阅读量:6626 次
发布时间:2019-06-25

本文共 1281 字,大约阅读时间需要 4 分钟。

Android 使用 Gmail 来发送邮件

1. [代码]SendMail.java    

package org.apache.android.mail;  

import android.app.Activity; 

import android.os.Bundle; 
import android.util.Log; 
import android.view.View; 
import android.widget.Button; 
import android.widget.EditText;  

public class SendMail extends Activity { 

    /**
     * Called with the activity is first created.
     */ 
    @Override 
    public void onCreate(Bundle icicle) { 
        super.onCreate(icicle); 
        setContentView(R.layout.main); 
        final Button send = (Button) this.findViewById(R.id.send); 
        final EditText userid = (EditText) this.findViewById(R.id.userid); 
        final EditText password = (EditText) this.findViewById(R.id.password); 
        final EditText from = (EditText) this.findViewById(R.id.from); 
        final EditText to = (EditText) this.findViewById(R.id.to); 
        final EditText subject = (EditText) this.findViewById(R.id.subject); 
        final EditText body = (EditText) this.findViewById(R.id.body); 
        send.setOnClickListener(new View.OnClickListener() { 
            public void onClick(View view) { 
                GMailSender sender = new GMailSender(userid.getText().toString(),
                    password.getText().toString()); 
                try { 
                    sender.sendMail(subject.getText().toString(), 
                            body.getText().toString(), 
                            from.getText().toString(), 
                            to.getText().toString()); 
                } catch (Exception e) { 
                    Log.e("SendMail", e.getMessage(), e); 
                } 
            } 
        }); 
    } 
}

转载地址:http://hcmpo.baihongyu.com/

你可能感兴趣的文章
Python垃圾回收机制(转)
查看>>
02-CSS基础与进阶-day9_2018-09-12-21-37-34
查看>>
OBJECT_ID 技巧整理
查看>>
【转】 cin、cin.get()、cin.getline()、getline()、gets()等函数的用法
查看>>
对链表的操作(数据结构线性表算法设计练习)
查看>>
关于 this 和 prototype 的理解
查看>>
面试总结——Java高级工程师(三)
查看>>
java开始到熟悉62
查看>>
hd acm2035
查看>>
linker command failed with exit code 1 (use -v to see invocation)修改方法
查看>>
git学习记录
查看>>
How to select a CRAN mirror in R & use repos parameter(2)
查看>>
HTML语法大全
查看>>
terasort 算法随笔
查看>>
双向循环链表
查看>>
Django~学习计划
查看>>
Git操作指南(2) —— Git Gui for Windows的建库、克隆(clone)、上传(push)、下载(pull)、合并(转)...
查看>>
Codeforces Gym 100203I I WIN 最大流
查看>>
windows下超越dirx的opencv视频转化库
查看>>
一起采坑redis(4)redis 管理命令--redis 批量删除key脚本(待完善)
查看>>