文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

android 打电话 发送短信

2022-06-06 13:09

关注

1.XML布局


    

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;
        }
    }
}

AndroidManifest.xml
添加权限
在这里插入图片描述


作者:morning to afternoon


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯