怎么在Android中調用發送的短信?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
創新互聯主營正鑲白網站建設的網絡公司,主營網站建設方案,重慶APP開發公司,正鑲白h5小程序開發搭建,正鑲白網站營銷推廣歡迎正鑲白等地區企業咨詢功能:調用發送短信功能
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" 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>
關于怎么在Android中調用發送的短信問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注創新互聯行業資訊頻道了解更多相關知識。
網站題目:怎么在Android中調用發送的短信-創新互聯
文章網址:http://vcdvsql.cn/article2/hopic.html
成都網站建設公司_創新互聯,為您提供面包屑導航、云服務器、定制網站、移動網站建設、自適應網站、手機網站建設
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯