Android调用拨打电话 代码

package auscend.sdk;

import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;

public class Android_2Activity extends Activity {

private EditText et;
    private Button bt;
    
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        et = (EditText)findViewById(R.id.et);
        bt = (Button)findViewById(R.id.button);
        
        bt.setOnClickListener(new OnClickListener()
        {

@Override
            public void onClick(View v)
            {
                //传入服务, parse()解析号码
                Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + et.getText()));
                //通知activtity处理传入的call服务
                Android_2Activity.this.startActivity(intent);
            }
            
      });      
    }
}

XML布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

<TextView
        android:id="@+id/tv"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/phone" />
    
    <EditText 
        android:id="@+id/et"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"/>

<Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:text="@string/button"/>

</LinearLayout>

电话服务添加
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="android.sdk"
    android:versionCode="1"
    android:versionName="1.0" >

<uses-sdk android:minSdkVersion="10" />
   <!-- 电话服务添加-->
    <uses-permission android:name="android.permission.CALL_PHONE"/>

<application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:label="@string/app_name"
            android:name=".Android_callActivity" >
            <intent-filter >
                <action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

来源:</manifest>http://blog.163.com/[email protected]/blog/static/172710222201111110149176/

时间: 2024-10-10 02:05:53

Android调用拨打电话 代码的相关文章

android 调用拨打电话,程序崩溃

FATAL EXCEPTION: main03-27 17:43:08.012: E/AndroidRuntime(18523): Process: com.mtq.freighthelper, PID: 1852303-27 17:43:08.012: E/AndroidRuntime(18523): java.lang.SecurityException: Permission Denial: starting Intent { act=android.intent.action.CALL

Android中如何调用拨打电话?

Android系统原本就为手机设计,所以,在android系统中的任何App中,只要愿意,拨打指定电话非常方便. 核心就是使用Intent跳转,指定请求Action为Intent.ACTION_CALL 即可. [源码下载] http://www.code4apk.com/android-code/178 核心代码如下: 1 Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse("tel:13888888888"); 下面一起来

Android手机拨打电话的开发实例

一部手机最常用的功能就是打电话和发短信了,在Android开发中我们如何通过程序拨打电话呢?本文就给出一个用Android手机拨打电话的简单的实例. 下面是开发此实例的具体步骤: 一.新建一个Android工程,命名为phoneCallDemo. 二.设计程序的界面,打开main.xml把内容修改如下: XML/HTML代码 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:and

Android 直接拨打电话界面

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

ios app跳转拨打电话界面,调用拨打电话功能

DNLogFUNC //两种方法都可以用 //这种据说是可以上appstore NSURL *phoneURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@",PhoneNumber]]; if ( !_phoneCallWebView ) { _phoneCallWebView = [[UIWebView alloc] initWithFrame:CGRectZero]; } [_phoneCallWebView

java 学习第11课,android 实现拨打电话的功能

1. 先布局界面,界面采用线性垂直方式来布局 在layout 界面文件中 activity_main.xml 中 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation=&

Android实例-拨打电话

(1)项目结构如下: (2)MainActivity.java package com.example.phonecall; import android.app.Activity; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.view.Menu; import android.view.View; import android.widget.But

iOS 两种调用拨打电话方式

iOS常用的打电话方式 第一种: [[UIApplicationsharedApplication] openURL:[NSURLURLWithString:@"tel://1008611"]]; 第二种: UIWebView *webView; if (webView == nil) { webView = [[UIWebView alloc] init]; } NSString *phoneStr = [NSString stringWithFormat:@"tel://

android学习笔记之调用拨号界面拨打电话

调用拨号界面拨打电话(不直接打出去) Intent intent1=  new Intent(Intent.ACTION_DIAL);             intent1.setData(Uri.parse("tel:400-8181800"));           startActivity(intent1); Manifest文件里:   设置权限 <uses-permission android:name="android.permission.CALL_P