一、创建 Android工程
Project name: Message
BuildTarget:Android2.2
Application name:sendMessage
Package name:com.dxw.activity
Create Activity: SendMessageActivity
Min SDK Version:8
二、编辑工程
1.编辑strings.xml文件内容为:
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="phone">请输入手机号:</string> <string name="app_name">短信的发送</string> <string name="massage">请输入信息内容:</string> <string name="content">这里输入信息内容</string> <string name="send">发送</string> </resources>
2.编辑main.xml文件内容为:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <!-- 请输入手机号码标签 --> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/phone" /> <!-- 手机号码编辑框 --> <EditText android:id="@+id/number" android:layout_width="wrap_content" android:layout_height="wrap_content" android:hint="这里输入手机号码" /> <!-- 请输入手机内容标签 --> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/massage" /> <!-- 信息内容输入框 --> <EditText android:id="@+id/content" android:layout_width="fill_parent" android:layout_height="45sp" android:minLines="3" android:hint="@string/content" /> <!-- 发送按纽 --> <Button android:id="@+id/send" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="send" /> </LinearLayout>
注意,我们在电话号码输入框和拨打电话按钮中添加了android:id属性。如电话号码输入框的android:id=”@+id/mobile”,@代码R.java,+id代码添加id静态内部类,mobile代表向id类中添加一个常量成员。ADT将自动为我们生成常量值。
android:minLines设置信息内容编辑框的最小行数
3.编辑SendMessageActivity.java内容:
package com.dxw.intent.activity; import java.util.List; import android.app.Activity; import android.os.Bundle; import android.telephony.gsm.SmsManager; import android.view.View; import android.widget.Button; import android.widget.EditText; public class IntentDemoActivity extends Activity { private Button btn = null; private EditText number = null; private EditText content = null; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // 获取按纽ID事件 btn = (Button) findViewById(R.id.send); // 获取按纽的单击事件 btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // 获取手机号码输入框的ID number = (EditText) findViewById(R.id.number); // 输入的获取手机号码 String sendNumber = number.getText().toString(); // 获取发送信息的ID content = (EditText) findViewById(R.id.content); // 获取输入的信息 String sendContent = content.getText().toString(); if (sendContent != null) { SmsManager sms = SmsManager.getDefault(); // 如果短信没有超过限制长度,则返回一个长度的List。 List<String> texts = sms.divideMessage(sendContent); for (String text : texts) { sms.sendTextMessage(sendNumber, null, text, null, null); } } } }); } }
sms.sendTextMessage(destinationAddress,scAddress, text, sentIntent, deliveryIntent):
destinationAddress:接收方的手机号码
scAddress:发送方的手机号码
text:信息内容
sentIntent:发送是否成功的回执,以后会详细介绍。
DeliveryIntent:接收是否成功的回执4.编辑AndroidManifest.xml内容:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.dxw.intent.activity" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:minSdkVersion="8" /> <application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name=".IntentDemoActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <!-- 注册发送信息的权限 --> </application> <uses-permission android:name="android.permission.SEND_SMS" /> </manifest>
注册发送短信的权限,如果没有注册这个,将使用不了系统的发送短信功能。以后在我们的应用程序开发中,有使用到系统功能的必须在这个文件中进行注册。我们可以查看Android的帮助手册都有能。(.../android-sdk-windows/docs/reference/android/Manifest.permission.html)
三、启动模拟器(注:这段代码不能给自己发 必须要启动两个模拟器才能测试)
我们给谁发短信?我们可以启动两个模拟器。使用一个模拟器给另一个模拟器发信息。首先我们使用工具栏上的手机图标再添加一个Android2.2的模拟器,另记一个名称。
在启动两个模拟器之前,我们需要模拟器能“接收到信号”。如果我们的机器是联网的,启动模拟器后,主界面显示信号强度的旁边会有一个3G的字样,这说明模拟器已经能接收到信号了。如果我们的机器不能联网,那么将自己的IP地址、网关和DNS服务器都设置为相同的值,比如都设置为192.168.0.100。如果我们的机器是在局域网下,但没有联网,那么将自己的网关和DNS设置为路由的IP即可,一般情况下路由的IP是192.168.0.1。
OK,现在我们启动两个模拟器!
四、发送短信
我们启动模拟器后,可以看到模拟器窗口的标题栏上有5554和55556的字样。这是模拟器监听的端口即——127.0.0.1:5554。
在工程上右键,Run As AndroidApplication,选择其中的一个模拟器。比如选择了端口为5554的模拟器。OK,程序被加载到模拟器中了,会被自动运行。
我们在电话号码编辑框中输入5556(接收端模拟器的端口号),在信息框输入要发送到饿信息,点击发送按钮!
OK,你看到效果了吗?5556主界面,显示信号强度的旁边显示收到新短信。