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

Android 拨号器

时间:2017-07-08 16:16:33      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:highlight   use   pad   method   otto   top   match   启动   info   

在清单文件中需要用到权限: 

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

 

获取到输入的号码后需要用intent 启动拨号器:

Intent intent=new Intent(Intent.ACTION_CALL,Uri.parse(("tel:"+infos)));
 startActivity(intent);

 


以下全部代码:

package com.example.callphone;

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 MainActivity extends Activity {

	private EditText my_info;
	private Button my_call;

	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		init();
	}

	private void init() {
		// TODO Auto-generated method stub
		my_call = (Button) findViewById(R.id.call);
		my_info = (EditText) findViewById(R.id.info);

		my_call.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View arg0) {
				// TODO Auto-generated method stub

				String infos = my_info.getText().toString().trim();

				Intent intent = new Intent(Intent.ACTION_CALL, Uri
						.parse(("tel:" + infos)));
				startActivity(intent);
			}
		});
	}

}

 xml布局代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.callphone.MainActivity" >

    <EditText
        android:id="@+id/info"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="请输入号码" />
    <Button
        android:id="@+id/call"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="拨打" />
</LinearLayout>

 

Android 拨号器

标签:highlight   use   pad   method   otto   top   match   启动   info   

原文地址:http://www.cnblogs.com/1535tang/p/7137008.html

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