Andriod Studio实现拨打电话和发送短信的示例代码

在 Android Studio中创建项目,然后在该项目中创建一个Module名称为“IntentDial”。在该 Module中实现本实例,具体步骤如下:
(1)在新建 Module的res\layout目录下添加布局
文件shouji.xml,将添加的布局管理器设置为相对布局管理器,然后在布局管理器中添加4个用于显示公司信息的文本框,再添加两个 ImageButton 组件,分别为拨打电话按钮和发送短信按钮。代码如下:




    
        android:id="@+id/text2"
        android:text="网址:http://www.mingrisoft.com"
        android:layout_marginTop="10dp"
        android:layout_below="@+id/text1"/>
        android:id="@+id/text3"
        android:text="企业邮箱:[email protected]"
        android:layout_below="@+id/text2"/>
        android:id="@+id/text4"
        android:text="技术服务热线:0431-84978981"
        android:layout_below="@+id/text3"/>
    
        android:id="@+id/imageButton_sms"
        android:layout_toRightOf="@+id/imageButton_phone"
        android:src="@drawable/sms"/>

(2)修改MainActivity.java文件,在 onCreate(方
法中获取布局文件中的电话图片按钮和短信图
片按钮,并为它们设置单击事件监听器,代码如下:

package com.mingrisoft.intentdial;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.view.View;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.ImageView;
public class MainActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.shouji);
        //获取电话图片按钮
        ImageButton imageButton = (ImageButton) findViewById(R.id.imageButton_phone);
        //获取短信图片按钮
        ImageButton imageButton1 = (ImageButton) findViewById(R.id.imageButton_sms);
        imageButton.setOnClickListener(listener); //为电话图片按钮设置单击事件
        imageButton1.setOnClickListener(listener);//为短信图片按钮设置单击事件
    }
  }

(3)在上面的代码中用到了 listener对象,该对象为OnClickListener类型。因此,要在Activity中创建该对象,并重写其 onClick()方法,在该方法中,通过判断单击按钮的id,分别为两个ImageButton组件设置拨打电话和发送短信的 Action及Date,代码如下:

package com.mingrisoft.intentdial;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.view.View;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.ImageView;
public class MainActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.shouji);
        //获取电话图片按钮
        ImageButton imageButton = (ImageButton) findViewById(R.id.imageButton_phone);
        //获取短信图片按钮
        ImageButton imageButton1 = (ImageButton) findViewById(R.id.imageButton_sms);
        imageButton.setOnClickListener(listener); //为电话图片按钮设置单击事件
        imageButton1.setOnClickListener(listener);//为短信图片按钮设置单击事件
    }
    //创建监听事件对象
    View.OnClickListener listener = new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent = new Intent(); //创建Intent对象
            switch (v.getId()) {       //根据ImageButton组件的id进行判断
                case R.id.imageButton_phone:              //如果是电话图片按钮
                    intent.setAction(intent.ACTION_DIAL); //调用拨号面板
                    intent.setData(Uri.parse("tel:043184978981")); //设置要拨打的号码
                    startActivity(intent); //启动Activity
                    break;
                case R.id.imageButton_sms:             //如果是短信图片按钮
                    intent.setAction(intent.ACTION_SENDTO); //调用发送短信息
                    intent.setData(Uri.parse("smsto:5554")); //设置要发送的号码
                    intent.putExtra("sms_body", "Welcome to Android!"); //设置要发送的信息内容
            }
        }
    };
}

(4)在AndroidManifest.xml文件中,设置允许该应用拨打电话和发送短信的权限,代码如下:



    
    

    
        
            
                
                
            
        
    

运行结果截图:

Andriod Studio实现拨打电话和发送短信的示例代码_第1张图片

Andriod Studio实现拨打电话和发送短信的示例代码_第2张图片

Andriod Studio实现拨打电话和发送短信的示例代码_第3张图片

到此这篇关于Andriod Studio实现拨打电话和发送短信功能的文章就介绍到这了,更多相关Andriod Studio拨打电话和发送短信内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(Andriod Studio实现拨打电话和发送短信的示例代码)