91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android 打電話 發送短信

發布時間:2020-07-29 07:24:02 來源:網絡 閱讀:129 作者:專注地一哥 欄目:移動開發

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="號碼:"

/>

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="撥打電話號碼"/>waihui實時點差

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="發送短信"/>

android:id="@+id/send_sms_noApp"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="直接發送短信"/>

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();

//設置動作

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

//給誰打電話

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

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

//啟動意圖

startActivity(li);

break;

case R.id.send_sms:

//意圖

Intent li1=new Intent();

//獲取電話

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

//獲取短信

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

//設置動作

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

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

//發送內容 鍵值對出現

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

//啟動意圖

startActivity(li1);

break;

case R.id.send_sms_noApp: //自己發送,不啟動系統自帶的APP

//短信管理者

SmsManager manager=SmsManager.getDefault();

//意圖

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

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

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

break;

}

}

}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

缙云县| 宁化县| 宁德市| 郯城县| 蓝山县| 万州区| 扎兰屯市| 白银市| 陕西省| 南靖县| 威信县| 安溪县| 新蔡县| 蓬安县| 资阳市| 嘉峪关市| 山西省| 视频| 太仆寺旗| 新竹县| 二连浩特市| 安新县| 司法| 大悟县| 南昌县| 赤城县| 柯坪县| 南漳县| 富锦市| 墨竹工卡县| 仁布县| 安义县| 武山县| 米易县| 临西县| 灵璧县| 噶尔县| 临安市| 永顺县| 柯坪县| 阜康市|