码迷,mamicode.com
首页 > 移动开发 > 详细

Android点击按钮拨打电话

时间:2017-11-01 18:15:01      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:tac   使用   new   public   世界   over   err   intent   uri   

代码改变世界

Android点击按钮拨打电话

public void callPhone(String str) {
    Intent intent=new Intent();
    intent.setAction(Intent.ACTION_DIAL);
    intent.setData(Uri.parse("tel:" + str));
    startActivity(intent);
}

  

如何使用:

setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    callPhone("18888888888");
}

  

 

Android点击按钮拨打电话

标签:tac   使用   new   public   世界   over   err   intent   uri   

原文地址:http://www.cnblogs.com/shmilyGWT/p/7767726.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!