短信发送器
建一个sms的工程
string.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello World, SMSActivity!</string>
<string name="app_name">短信发送器</string>
<string name="mobile">请输入手机号</string>
<string name="content">请输入短信内容</string>
<string name="button">发送短信</string>
<string name="info">发送成功</string>
</resources>
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/mobile"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/mobile"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/content"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:minLines="3"
android:id="@+id/content"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button"
android:id="@+id/button"
/>
</LinearLayout>
SMSActivity.Java
package cn.itcast.activity;
import java.util.List;
import android.app.Activity;
import android.os.Bundle;
import android.telephony.SmsManager;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
public class SMSActivity extends Activity {
private EditText mobileText;
private EditText contentText;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mobileText = (EditText)this.findViewById(R.id.mobile);
contentText = (EditText)this.findViewById(R.id.content);
Button button = (Button)this.findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
String mobile = mobileText.getText().toString();
String content = contentText.getText().toString();
SmsManager smsManager = SmsManager.getDefault();
if(content.length() > 70){
List<String> contents = smsManager.divideMessage(content);
for(String sms : contents){
smsManager.sendTextMessage(mobile, null, sms, null, null);
}
}else{
smsManager.sendTextMessage(mobile, null, content, null, null);
}
Toast.makeText(SMSActivity.this, R.string.info, Toast.LENGTH_LONG).show(); //吐西
}
});
}
}
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cn.itcast.activity"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".SMSActivity"
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-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.SEND_SMS"/>
</manifest>
- 大小: 49.2 KB
分享到:
相关推荐
用S7-200外加国产短信发送器的一起发送短信息的程序.zip西门子PLC编程实例程序源码下载用S7-200外加国产短信发送器的一起发送短信息的程序.zip西门子PLC编程实例程序源码下载用S7-200外加国产短信发送器的一起发送短...
在android模拟环境下,实现一个短信发送器
A页面打开B页面,选中B的值,关闭B页面,并把B中选中的值返回A页面,短信发送器代码,导入ADT eclipse开发环境
android短信发送器
C#串口终端短信发送器 C#串口终端短信发送器
Android应用开发之拨号器和短信发送器的代码实现
手工编写的短信发送器,eclipse开发的,安卓程序
简易Android短信发送器,带联系人目录
学习过程中自己写的简单的电话拨号器和短信发送器。仅供以后复习可以参考~
简单android短信发送器源码,详情请进入博客-Android分类下查看
Android自定义短信发送器源代码
西门子PLC例程源码用S7-200外加国产短信发送器的一起发送短信息的程序.本资源系百度网盘分享地址
基于Android平台的智能短信发送器.pdf
基于Android平台的短信发送器实现探秘(全文).docx
西门子PLC程序源码-用S7-200外加国产短信发送器的一起发送短信息的程序
西门子PLC例程-用S7-200外加国产短信发送器的一起发送短信息的程序.
工业机器人-用S7-200外加国产短信发送器的一起发送短信息的程序..7z