溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

android代碼實(shí)現(xiàn)打電話和發(fā)送短信功能

發(fā)布時(shí)間:2020-05-27 11:57:17 來源:億速云 閱讀:306 作者:鴿子 欄目:移動(dòng)開發(fā)

1.XML布局

xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

tools:context=".MainActivity"

android:orientation="vertical">

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="號(hào)碼:"

/>

android:id="@+id/phoneNumber"

android:layout_width="match_parent"

android:layout_height="wrap_content" />

android:id="@+id/call"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="撥打電話號(hào)碼"/>waihui實(shí)時(shí)點(diǎn)差

android:id="@+id/message"

android:layout_width="match_parent"

android:layout_height="wrap_content"

/>

android:id="@+id/send_sms"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="發(fā)送短信"/>

android:id="@+id/send_sms_noApp"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="直接發(fā)送短信"/>

2.MainActivity

package com.example.android013;

import androidx.appcompat.app.AppCompatActivity;

import android.annotation.SuppressLint;

import android.app.PendingIntent;

import android.content.Intent;

import android.net.Uri;

import android.os.Bundle;

import android.telephony.SmsManager;

import android.view.View;

import android.widget.Button;

import android.widget.EditText;

import android.widget.Toast;

public class MainActivity extends AppCompatActivity implements View.OnClickListener {

private Button call;

private Button send_sms;

private Button send_sms_noApp;

private EditText phoneNumber;

private EditText message;

private String Phone; //定義字符

private String msg;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

call=findViewById(R.id.call);

send_sms=findViewById(R.id.send_sms);

send_sms_noApp=findViewById(R.id.send_sms_noApp);

phoneNumber=findViewById(R.id.phoneNumber);

message=findViewById(R.id.message);

call.setOnClickListener(this);

send_sms.setOnClickListener(this);

send_sms_noApp.setOnClickListener(this);

}

@SuppressLint("WrongConstant")

@Override

public void onClick(View v) {

switch (v.getId()){

case R.id.call:

//意圖

Intent li=new Intent();

//設(shè)置動(dòng)作

li.setAction(Intent.ACTION_DIAL); //撥打

//給誰打電話

Phone=phoneNumber.getText().toString();

li.setData(Uri.parse("tel:"+Phone));

//啟動(dòng)意圖

startActivity(li);

break;

case R.id.send_sms:

//意圖

Intent li1=new Intent();

//獲取電話

Phone=phoneNumber.getText().toString();

//獲取短信

msg=message.getText().toString();

//設(shè)置動(dòng)作

li1.setAction(Intent.ACTION_SENDTO);//發(fā)送到哪里

li1.setData(Uri.parse("smsto:"+Phone)); //發(fā)送到誰

//發(fā)送內(nèi)容 鍵值對(duì)出現(xiàn)

li1.putExtra("sms_body",msg); //一條短信只能容納140個(gè)字節(jié)70個(gè)漢字.判斷長(zhǎng)度

//啟動(dòng)意圖

startActivity(li1);

break;

case R.id.send_sms_noApp: //自己發(fā)送,不啟動(dòng)系統(tǒng)自帶的APP

//短信管理者

SmsManager manager=SmsManager.getDefault();

//意圖

PendingIntent pendingIntent=PendingIntent.getBroadcast(MainActivity.this,0,new Intent(),0);

manager.sendTextMessage("12306",null,"回家正好啊",pendingIntent,null);

Toast.makeText(this,"發(fā)送成功",0).show();

break;

}

}

}

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI