android傳送簡訊例子

來源:互聯網
上載者:User

Android應用開發中我們常常需要傳送簡訊。這對於android平台來說,是最簡單不過的功能了,無需太多代碼,也無需自訂代碼,只需要調用android提供的訊息管理類SmsManager就可以了。

 

核心代碼如下:

 

SmsManager sms=SmsManager.getDefault();PendingIntent  intent=PendingIntent.getBroadcast(MainActivtiy.this,0, new Intent(), 0);sms.sendTextMessage(phone.getText().toString(), null, text.getText().toString(), intent, null);


 

下面一起來實現這個功能:

第1步:建立一個activity :MainActivtiy

 

import android.app.Activity;import android.app.PendingIntent;import android.content.Intent;import android.os.Bundle;import android.telephony.SmsManager;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.EditText;import android.widget.Toast;public class MainActivtiy extends Activity {EditText text;EditText phone;Button send;@Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.main);send=(Button)findViewById(R.id.send);text=( EditText)findViewById(R.id.text);phone=( EditText)findViewById(R.id.phone);send.setOnClickListener(new OnClickListener() {@Overridepublic void onClick(View v) {SmsManager sms=SmsManager.getDefault();PendingIntent  intent=PendingIntent.getBroadcast(MainActivtiy.this,0, new Intent(), 0);sms.sendTextMessage(phone.getText().toString(), null, text.getText().toString(), intent, null);Toast.makeText( MainActivtiy.this, 發送成功....., Toast.LENGTH_LONG).show();}});}}


 

第2步:修改設定檔:main.xml

 




 

第3步:在設定檔AndroidManifest.xml中添加傳送簡訊支援

 




 

第4步調試運行:

【源碼下載】http://www.code4apk.com/android-code/202

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.