怎么在Android中調(diào)用發(fā)送的短信?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
創(chuàng)新互聯(lián)主營正鑲白網(wǎng)站建設的網(wǎng)絡公司,主營網(wǎng)站建設方案,重慶APP開發(fā)公司,正鑲白h5小程序開發(fā)搭建,正鑲白網(wǎng)站營銷推廣歡迎正鑲白等地區(qū)企業(yè)咨詢功能:調(diào)用發(fā)送短信功能
1 、 權(quán)限
2、具體實現(xiàn)
Uri smstoUri = Uri.parse("smsto:"); Intent intent = new Intent(Intent.ACTION_VIEW,smstoUri); intent.putExtra("address","電話號碼"); // 沒有電話號碼的話為默認的,即顯示的時候是為空的 intent.putExtra("sms_body","短信內(nèi)容"); // 設置發(fā)送的內(nèi)容 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); //點擊發(fā)送短信 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); // 設置發(fā)送的內(nèi)容 intent.setType("vnd.android-dir/mms-sms"); startActivity(intent); } }); } }
Mainfest.xml 配置文件:
布局示意圖:
關(guān)于怎么在Android中調(diào)用發(fā)送的短信問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。