Android 调用发送短信的方法

作者:1140566087 时间:2023-05-30 22:56:40 

Android 调用发送短信的方法

功能:调用发送短信功能

1 、 权限


<uses-permission android:name="android.permission.SEND_SMS"/>

2、具体实现


Uri smstoUri = Uri.parse("smsto:");
Intent intent = new Intent(Intent.ACTION_VIEW,smstoUri);
intent.putExtra("address","电话号码"); // 没有电话号码的话为默认的,即显示的时候是为空的
intent.putExtra("sms_body","短信内容"); // 设置发送的内容
intent.setType("vnd.android-dir/mms-sms");
startActivity(intent);

Activity 代码:


public class MainActivity extends Activity {

private EditText phone ,message;
 private Button sendbtn;
 protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   setContentView(R.layout.activity_main);

phone = (EditText) findViewById(R.id.phone);
   message = (EditText) findViewById(R.id.message);
   sendbtn = (Button) findViewById(R.id.sendbtn);

//点击发送短信
   sendbtn.setOnClickListener(new OnClickListener() {

public void onClick(View v) {
       String p = phone.getText().toString();
       String m = message.getText().toString();
       Uri smstoUri = Uri.parse("smsto:"); // 解析地址
       Intent intent = new Intent(Intent.ACTION_VIEW,smstoUri);
       intent.putExtra("address",p); // 没有电话号码的话为默认的,即显示的时候是为空的
       intent.putExtra("sms_body",m); // 设置发送的内容
       intent.setType("vnd.android-dir/mms-sms");
       startActivity(intent);
     }
   });
 }
}

 Mainfest.xml 配置文件:


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="com.example.message"
 android:versionCode="1"
 android:versionName="1.0" >

<uses-sdk
   android:minSdkVersion="10"
   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.message.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>

布局示意图:



<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:paddingBottom="@dimen/activity_vertical_margin"
 android:paddingLeft="@dimen/activity_horizontal_margin"
 android:paddingRight="@dimen/activity_horizontal_margin"
 android:paddingTop="@dimen/activity_vertical_margin"
 tools:context=".MainActivity" >

<EditText
   android:id="@+id/phone"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_alignParentLeft="true"
   android:layout_alignParentRight="true"
   android:ems="10"
   android:inputType="number" >

<requestFocus />
 </EditText>

<Button
   android:id="@+id/sendbtn"
   style="?android:attr/buttonStyleSmall"
   android:layout_width="150dp"
   android:layout_height="50dp"
   android:layout_alignParentBottom="true"
   android:layout_centerHorizontal="true"
   android:layout_marginBottom="28dp"
   android:text="Send" />

<EditText
   android:id="@+id/message"
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:layout_above="@+id/sendbtn"
   android:layout_alignLeft="@+id/phone"
   android:layout_marginBottom="48dp"
   android:ems="10" />

</RelativeLayout>

来源:http://sunzone.iteye.com/blog/1998110

标签:Android,调用,短信
0
投稿

猜你喜欢

  • Struts2+Hibernate实现数据分页的方法

    2022-10-28 05:31:13
  • Java动态代理之拦截器的应用

    2022-11-24 11:18:55
  • 国内分布式框架Dubbo使用详解

    2022-05-10 13:38:27
  • Java中的多态用法实例分析

    2021-07-11 18:36:35
  • 简单了解Java方法的定义和使用实现详解

    2023-10-30 16:12:46
  • 利用@Value注解为bean的属性赋值方法总结

    2023-10-15 19:54:06
  • Java内置GUI Frame类的使用

    2021-10-25 18:06:49
  • SpringMVC使用@PathVariable接收参数过程解析

    2021-09-03 20:52:41
  • 详解C语言内核字符串拷贝与比较

    2023-11-02 15:22:30
  • Java线程同步、同步方法实例详解

    2023-10-16 07:10:53
  • C# 图片剪切与缩小的实例

    2021-12-31 14:32:53
  • Unity实现游戏伤害数字显示HUD的方法

    2023-05-18 06:47:01
  • C#生成putty格式的ppk文件

    2021-10-12 10:39:50
  • Java多线程读写锁ReentrantReadWriteLock类详解

    2023-03-09 07:01:54
  • Android自定义View之自定义评价打分控件RatingBar实现自定义星星大小和间距

    2023-03-14 04:30:16
  • C语言字符串函数入门

    2021-07-22 17:10:15
  • Java 超详细图解集合框架的数据结构

    2022-04-14 13:09:00
  • 一文给你通俗易懂的讲解Java异常

    2021-12-20 14:40:56
  • Spring Boot深入排查 java.lang.ArrayStoreException异常

    2023-07-11 16:31:27
  • easyexcel读取excel合并单元格数据的操作代码

    2022-08-26 16:26:21
  • asp之家 软件编程 m.aspxhome.com