導航:首頁 > 操作系統 > android跳轉簡訊界面

android跳轉簡訊界面

發布時間:2023-08-24 17:11:09

android 開發 一個通過服務端內容自動發送簡訊到指定號碼

調用系統的發送簡訊界面,只需向系統發送一個Intent,並附帶相關參數就可以了,下面以一個仿差demo說明。

類似下圖的界面


activity_main.xml


[html] view plain

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

<Button

android:id="@+id/btn_send"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignParentRight="true"

android:layout_marginRight="@dimen/padding_small"

android:gravity="center"

android:paddingLeft="@dimen/padding_small"

android:paddingRight="@dimen/padding_small"

android:text="@string/btn_send" />

<EditText

android:id="@+id/edit_phone_number"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:layout_alignBottom="@id/btn_send"

android:layout_marginLeft="@dimen/padding_small"友悔

android:layout_marginRight="@dimen/padding_small"

android:layout_toLeftOf="@id/btn_send"

android:hint="@string/edittext_hint"

android:inputType="phone"

android:paddingLeft="@dimen/padding_small" />

</RelativeLayout>


然後在MainActivity中編寫相應的java代碼就可以了,操作很簡單,在EditText中輸入號碼,然後點擊Send,就跳到系統發備告皮送簡訊界面,並且接收人一欄里填入號碼。相關的代碼如下:


獲取控制項,響應Button的點擊事件:


[java] view plain

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

mEditText = (EditText) findViewById(R.id.edit_phone_number);

mButton = (Button) findViewById(R.id.btn_send);

mButton.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

String phoneNumber = mEditText.getText().toString();

if (!TextUtils.isEmpty(phoneNumber)) {

sendSmsWithNumber(MainActivity.this, phoneNumber);

}

}

});

}


向指定號碼發送簡訊:

[java] view plain

/**

* 調用系統界面,給指定的號碼發送簡訊

*

* @param context

* @param number

*/

public void sendSmsWithNumber(Context context, String number) {

Intent sendIntent = new Intent(Intent.ACTION_SENDTO, Uri.parse("smsto:" + number));

context.startActivity(sendIntent);

}

這樣點擊Send後,就會跳轉到系統簡訊界面了,並且接收人一欄里就是剛才你填寫的號碼。


同理,要想調用系統發送簡訊界面後附加簡訊內容和以上是類似的,只需在Intent中附帶相關的參數就可以了。

[java] view plain

/**

* 調用系統界面,給指定的號碼發送簡訊,並附帶簡訊內容

*

* @param context

* @param number

* @param body

*/

public void sendSmsWithBody(Context context, String number, String body) {

Intent sendIntent = new Intent(Intent.ACTION_SENDTO);

sendIntent.setData(Uri.parse("smsto:" + number));

sendIntent.putExtra("sms_body", body);

context.startActivity(sendIntent);

}

⑵ 安卓開發如何A應用中的按鈕點擊後跳到B應用中的頁面去

Android開發之Intent跳轉到系統應用中的撥號界面、聯系人界面、簡訊界面
現在開發中的功能需要直接跳轉到撥號、聯系人、簡訊界面等等,查找了很多資料,自己整理了一下。

//安裝已經存在的apk
StringfilePath="mnt/sdcard/abc.apk";
Intentintent=newIntent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("file://"+filePath),
"application/vnd.android.package-archive");
startActivity(intent);//直接跳到安裝頁面,但是還要點擊按鈕確定安裝,還是取消安裝
//卸載某應用
StringpackageName="org.adw.launcher2"
UripackageUri=Uri.parse("package:"+packageName);//包名,指定該應用
IntentuninstallIntent=newIntent(Intent.ACTION_DELETE,packageUri);
startActivity(uninstallIntent);

//查看某一應用程序的信息
Uriuri=Uri.parse("package:"+packageName);//包名,指定該應用
Intentintent=newIntent("android.settings.APPLICATION_DETAILS_SETTINGS",uri);
startActivity(intent);

⑶ 安卓手機被攔截的簡訊怎麼查看

對已產生的騷擾攔截記錄,可在騷擾攔截界面進行刪除、恢復信息、號碼申訴等操作。

以華為nova 8手機為例:

進入信息>四個點>騷擾攔截,對攔截記錄進行如下管理:

閱讀全文

與android跳轉簡訊界面相關的資料

熱點內容
單片機根據波形寫代碼 瀏覽:669
應屆生程序員怎麼投簡歷 瀏覽:721
數學建模演算法與應用ppt 瀏覽:99
遠程怎麼訪問端游伺服器 瀏覽:106
打電話定位置的源碼 瀏覽:642
即時通訊平台源碼 瀏覽:457
安卓自助app怎麼轉到蘋果手機 瀏覽:328
雅馬哈迴音壁不能識別源碼 瀏覽:730
python如何移植到安卓 瀏覽:29
黃柱選股公式源碼 瀏覽:639
教育系統源碼達標 瀏覽:887
音效卡驅動安裝程序在哪個文件夾 瀏覽:60
錢還完了銀行不給解壓 瀏覽:169
linux的系統調用表 瀏覽:752
php怎麼轉換頁面 瀏覽:546
我的世界買了伺服器之後怎麼開服 瀏覽:828
r1234yf汽車空調壓縮機 瀏覽:147
ftp伺服器地址欄 瀏覽:902
linux圖形分區 瀏覽:967
安徽到遼寧源碼 瀏覽:579