android手机短信发送

刚学android不久,最近卫卫发给我了一个视频,是怎样制作android手机上的短信发送器,一方面我感觉很有意思,另一方可以陪着她一起,今天弄完了,特来总结一下,虽然说比较简单吧,但还是有总结的必要的。

短信发送器主要是用于android下的短信发送的,其主要的界面就是输入发送母的人的号码和要发的信息的内容,主要界面有两个TextView和两个EditText还有一个Button(在import android.widget.*),下面是布局文件(layout):

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout

xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:orientation="vertical" >

<TextView

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:text="@string/number"

/>

<EditText

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:id="@+id/number"

/>

<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/context"

/>

<Button

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="@string/button"

android:id="@+id/button"

/>

</LinearLayout>

以上布局文件使用的string的值需要在value/string.xml进行设置,主要的代码如下:

<?xml version="1.0" encoding="utf-8"?>

<resources>

<string name="app_name">smsTest</string>

<string name="action_settings">Settings</string>

<string name="content">请输入短信内容</string>

<string name="number">请输入手机号</string>

<string name="button">发送信息</string>

<string name="success">发送成功</string>

</resources>

以上就是布局,可以到AVD中试试是否成功,但是我们要完成这个短信发送器还需要在主程序.java写上相应的处理。

package com.example.smstest;

import android.os.Bundle;

import android.app.Activity;

import android.view.Menu;

import android.telephony.gsm.SmsManager;

import android.view.View;

import android.widget.Button;

import android.widget.EditText;

import android.widget.Toast ;

import java.util.ArrayList;//以上是需要的包

@SuppressWarnings( "deprecation" )

public class MainActivity extends Activity {

private EditText numberText ;//这个变量时用来接受布局中输入的号码

private EditText contentText ;//这个变量时用来接受布局中输入的信息

@Override

protected void onCreate(Bundle savedInstanceState) {//此类程序会从这歌开始在执行

super.onCreate(savedInstanceState);//调用父类Activity中的onCreate方法

setContentView(R.layout.activity_main);//执行布局文件

numberText = (EditText) this.findViewById( R.id.number ) ; //接受布局中输入框中的号码

contentText = (EditText) this.findViewById(R.id.context) ;//接受布局中输入框中的信息

Button button = (Button) this.findViewById(R.id.button) ;//使用Button

button.setOnClickListener( new ButtonClick() ) ;//设置Button响应的内容

}

private final class ButtonClick implements View.OnClickListener

{

@Override

public void onClick( View arg0 ) {

String number = numberText.getText().toString() ;//接受布局中输入框中的号码

String content = contentText.getText().toString();

SmsManager manger = SmsManager.getDefault();//建立短信管理对象

ArrayList<String> texts=manger.divideMessage(content) ;//如果短信过长超过一条短信的最大值那么分为多条短信发送

for ( String text : texts ) {

manger.sendTextMessage(number, null, text, null, null) ;//发送消息(第一个是目的号码,第三个是消息内容)

}

Toast.makeText(getApplicationContext(), R.string.success, Toast.LENGTH_LONG ).show() ;

//使用Toast提示短信发送成功

}

}

@Override

public boolean onCreateOptionsMenu(Menu menu) {

// Inflate the menu; this adds items to the action bar if it is present.

getMenuInflater().inflate(R.menu.main, menu);

return true;

}

}

这样就可以了,可以在两个模拟器中发送(汉字会乱码但手机不会)

但是这样仍然不能再手机中使用,因为手机中的使用的话是要有使用权限的比如允许其扣除话费,那么获得权限就需要修改/smsTest/AndroidManifest.xml中加一个权限的代码

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

package="com.example.smstest"

android:versionCode="1"

android:versionName="1.0" >

<uses-sdk

android:minSdkVersion="6"

android:targetSdkVersion="10" />

<application

android:allowBackup="true"

android:icon="@drawable/ic_launcher"

android:label="@string/app_name"

android:theme="@style/AppTheme" >

<activity

android:name="com.example.smstest.MainActivity"

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>

红体字是加上去的,其余是自动生成的,到此短信发送器OK了。

2014/04/03 14:44

时间: 2024-11-11 16:30:24

android手机短信发送的相关文章

android手机短信获取

关于Android中对短信的一些相关操.我看到一个文章下面我就从标题中的三个方面来对Android系统中的短信操作进行一个简单地学习. 短信发送: 由于Android中对短信发送方法的优良封装,之后对发送短信的开发就显得异常的简单了. public static void sendMessage(Context context, String content, String phoneNumber) { SmsManager sms = SmsManager.getDefault(); Pend

完整的Android手机短信验证源码

短信验证功能我分两个模块来说,短信验证码的后台和代码实现短信验证码的功能. 一.短信验证码的后台      1.注册Mob账号:http://www.mob.com/#/login 2.注册成功之后,点击“头像”,进入“产品中心”,进入如下界面点击第二项添加应用.添加完应用几秒后再次进入第二项. 3.在第二步之后我们会得到两个重要的参数App key和App Secret,用于客户端和服务端的链接,创建好应用之后还会得到两个菜单选项“验证记录”和“短信设置”,“验证记录”是说我们进行短信验证之后

[工具-007] C#手机短信发送

本工具是基于中国网建SMS短信通的API进行开发的,主要功能就是用注册的号码对指定的号码发送短信,此功能主要应用于企业营销方面. 中国网建SMS短信通http://www.smschinese.cn/ 在上述网站中注册用户,后面发送信息用,本篇主要介绍短信的发送,不介绍彩信,我们首先要获得短信的密钥和用户名 2.利用API借口编写请求发送代码 private void btnSend_Click(object sender, EventArgs e) { if (check()) { strin

android 在短信发送界面, 短信发送失败时,提示音不完整,会被中断

1. 当一条SMS到来, 此时SMS是unseen状态, 就会弹出Notification提示用户 2. 但假设处于同一个联系人的界面下, 用户会立马看到这条SMS, 此时这条SMS会被高速的标记为seen, 并取消Notification, 所以用户会听到铃声响了一下又中断了 3. Fail的短信也是相同的原理, 一開始这条fail的短信会被标记为unseen, 但同一时候由于处于同一个界面下, 已经看到了这条Fail的信息, 所以也会出现这个问题. 如今的情况是新来SMS有一个feature

利用js、html以及Css简单制作了一个模拟手机短信发送

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>MyPhoneSend</title> <style type="text/css"> #phoneOut{ width: 320px; height: 500px; border:1px solid #333; border-radius: 10px; margi

4、ABPZero系列教程之拼多多卖家工具 集成短信发送模块

ABPZero并没有手机短信发送功能,现在我们来集成一个,为后面注册.登录作铺垫. 阿里云短信服务 首先需要在阿里云开通短信服务,连接地址 开通后,在签名管理中添加一个签名 在模板管理中添加一个模板,如下图所示 最后需要使用阿里云提供的.NET发送短信类库,下面可以直接下载我上传的类库,也可以去官方下载,然后提取我所说的2个类库(aliyun-net-sdk-core.dll.aliyun-net-sdk-dysmsapi.dll) 直接下载文件:https://files.cnblogs.co

android 添加手机短信,获取手机短信,删除手机短信和修改手机短信

注意添加权限: <uses-permission android:name="android.permission.READ_SMS"></uses-permission> <uses-permission android:name="android.permission.WRITE_SMS"></uses-permission> 代码如下: //更新短信 private void UpdateSMS() { /* u

JAVA发送手机短信

<p><span>JAVA发送手机短信,流传有几种方法:(1)使用webservice接口发送手机短信,这个可以使用sina提供的webservice进行发送,但是需要进行注册;(2)使用短信mao的方式进行短信的发送,这种方式应该是比较的常用,前提是需要购买硬件设备,呵呵;</span></p> import org.apache.commons.httpclient.Header; import org.apache.commons.httpclient

简单实现发送手机短信

C#简单实现发送手机短信 偶然想起,像编写一个从电脑向手机发送短信的程序,从网上查找到有三种方式:(1)使用webservice接口发送手机短信,这个可以使用sina提供的webservice进行发送,但是需要进行注册;(2)使用短信mao的方式进行短信的发送,这种方式应该是比较的常用,前提是需要购买硬件设备,这个就不考虑了(3)使用中国网建提供的SMS短信平台,但是,用完几条免费的后,就要收费了. 首先,我用C#实现第一种方法,发现总是错误,这个不解,后来从网上查找原因,有的说,新浪这个功能已