主布局文件:

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical" >    <TextView android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="这是一个发送Email的示例"/>    <LinearLayout android:layout_width="fill_parent"        android:layout_height="wrap_content">        <TextView android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:text="收信人"/>        <EditText android:layout_width="fill_parent"            android:layout_height="wrap_content"            android:id="@+id/ed_receiver"            android:hint="输入收信人Email"/>    </LinearLayout>        <LinearLayout android:layout_width="fill_parent"        android:layout_height="wrap_content">        <TextView android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:text="主 题"/>        <EditText android:layout_width="fill_parent"            android:layout_height="wrap_content"            android:id="@+id/ed_emailSubject"            android:hint="输入信件主题"/>    </LinearLayout>    <EditText android:layout_width="fill_parent"        android:layout_height="250px"        android:id="@+id/ed_emailBody"        android:hint="输入新建内容"/>    <Button android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:id="@+id/bt_send"        android:text="发  送"/></LinearLayout>

主活动类EmailActivity.java:

package com.example.ch10;import com.example.baseexample.R;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.View;import android.widget.Button;import android.widget.EditText;public class EmailActivity extends Activity {private EditText ed_receiver,ed_emailSubject,ed_emailBody;private Button bt_send;public void onCreate(Bundle savedInstanceState){super.onCreate(savedInstanceState);setContentView(R.layout.ch10_email);ed_receiver = (EditText)findViewById(R.id.ed_receiver);ed_emailSubject = (EditText)findViewById(R.id.ed_emailSubject);ed_emailBody = (EditText)findViewById(R.id.ed_emailBody);bt_send = (Button)findViewById(R.id.bt_send);bt_send.setOnClickListener(new Button.OnClickListener(){@Overridepublic void onClick(View arg0) {String[] emailReciver = new String[]{ed_receiver.getText().toString()};String emailSubject = ed_emailSubject.getText().toString();String emailBody = ed_emailBody.getText().toString();Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);emailIntent.setType("plain/text");emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, emailReciver);emailIntent.putExtra(android.content.Intent.EXTRA_CC, "test");emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, emailSubject);emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, emailBody);startActivity(Intent.createChooser(emailIntent, "mail test"));}});}}






更多相关文章

  1. Android(安卓)IOC
  2. Android输入法弹出流程
  3. Android过滤特殊字符和emoji表情
  4. Android(安卓)Dialog 对话框详解及示例代码
  5. Android中Shape Drawable在xml中的使用
  6. 配置android的adb环境变量
  7. Eclipse中插件(Google Android)插件
  8. android中打开相机、打开相册进行图片的获取示例
  9. MAC下HBuilder进行Android真机调试

随机推荐

  1. 【图解数据结构】 一组动画彻底理解插入
  2. 每天一算:Binary Tree Preorder Traversal
  3. 每天一算:Swap Nodes in Pairs
  4. ubuntu 编译 Android(安卓)出现的若干错
  5. 每天一算:二叉树的中序遍历
  6. 每天一算:Partition List
  7. 【图解数据结构】 一组动画彻底理解计数
  8. 五分钟学算法:二叉树的后序遍历
  9. 每天一算:Odd Even Linked List
  10. 【图解数据结构】 一组动画彻底理解桶排