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

Android 直接拨打电话界面

时间:2015-10-26 11:51:53      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

Android 拨号界面和直接拨打电话界面代码控制

//定义TAG为空

private static final String TAG = null;

//定义Button的点击事件

tell.setOnClickListener(new View.OnClickListener() {
  
  @Override
  public void onClick(View v) {
   // TODO Auto-generated method stub
 /*  Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:"+10086));
   
   startActivity(intent);*/
   
   
    //直接拨打 
   
   String tel = "10086";
         call(tel);
  }
 });

//点击事件调用的类

protected void call(String tel) { 
  /*      // 只进入拨号界面,不拨打 
         Uri uri = Uri.parse("tel:" + tel); 
         Intent intent = new Intent(Intent.ACTION_DIAL, uri); 
         startActivity(intent);  */
 
         //直接拨打 
        Log.d(TAG, "call:" + tel); 
        Uri uri = Uri.parse("tel:" + tel); 
        Intent intent = new Intent(Intent.ACTION_CALL, uri); 
        startActivity(intent); 
    } 

注意: 添加权限:

<uses-permission android:name="android.permission.READ_PHONE_STATE" />   
<uses-permission android:name="android.permission.CALL_PHONE" />   
<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS"/> 

Android 直接拨打电话界面

标签:

原文地址:http://www.cnblogs.com/weixuexi/p/4910469.html

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