"打电话"是每个手机必备的功能,虽然在Android平台上可以通过程序,进行各种让人目眩神迷的应用,但拨打电话这项最基本的功能,依然是每个Android工程师的必修课程。
在这个范例中,设计一个让用户输入电话号码的EditText,通过一个Button来实现拨打电话的练习。
Project Name:Phone
TargetName:Android4.0.3
Application name:phone
Package Name:com.gaolei.phone
Minimun SDK Version:15
1.编辑strings.xml文件内容为:
1
<?
xml version="1.0" encoding="utf-8"
?>
2 < resources >
3 < string name ="hello" > Hello World, PhoneActivity! </ string >
4 < string name ="app_name" > Phone </ string >
5 < string name ="mobile" > 请输入手机号 </ string >
6 < string name ="button" > 拨号 </ string >
7 </ resources >
2 < resources >
3 < string name ="hello" > Hello World, PhoneActivity! </ string >
4 < string name ="app_name" > Phone </ string >
5 < string name ="mobile" > 请输入手机号 </ string >
6 < string name ="button" > 拨号 </ string >
7 </ resources >
2.编辑main.xml文件内容为:
1
<?
xml version="1.0" encoding="utf-8"
?>
2 < LinearLayout xmlns:android ="http://schemas.android.com/apk/res/android"
3 android:layout_width ="wrap_content"
4 android:layout_height ="fill_parent"
5 android:orientation ="vertical" >
6
7 <!-- 标题标签 -->
8 < TextView
9 android:layout_width ="fill_parent"
10 android:layout_height ="wrap_content"
11 android:text ="@string/mobile" />
12
13 <!-- 电话号码输入框 -->
14 < EditText
15 android:layout_width ="fill_parent"
16 android:layout_height ="wrap_content"
17 android:id ="@+id/mobile"
18 android:inputType ="number|phone"
19 android:text ="" />
20 <!-- 拨打电话按钮 -->
21 < Button
22 android:id ="@+id/button"
23 android:layout_width ="wrap_content"
24 android:layout_height ="wrap_content"
25 android:text ="@string/button" />
26 </ LinearLayout >
2 < LinearLayout xmlns:android ="http://schemas.android.com/apk/res/android"
3 android:layout_width ="wrap_content"
4 android:layout_height ="fill_parent"
5 android:orientation ="vertical" >
6
7 <!-- 标题标签 -->
8 < TextView
9 android:layout_width ="fill_parent"
10 android:layout_height ="wrap_content"
11 android:text ="@string/mobile" />
12
13 <!-- 电话号码输入框 -->
14 < EditText
15 android:layout_width ="fill_parent"
16 android:layout_height ="wrap_content"
17 android:id ="@+id/mobile"
18 android:inputType ="number|phone"
19 android:text ="" />
20 <!-- 拨打电话按钮 -->
21 < Button
22 android:id ="@+id/button"
23 android:layout_width ="wrap_content"
24 android:layout_height ="wrap_content"
25 android:text ="@string/button" />
26 </ LinearLayout >
注意,我们在电话号码输入框和拨打电话按钮中添加了android:id属性。如电话号码输入框的android:id=”@+id/mobile”,@代码R.java,+id代码添加id静态内部类,mobile代表向id类中添加一个常量成员。ADT将自动为我们生成常量值。
在mail.xml的EditText对象中,添加android:phoneNumber="true"的设置,即可限制用户输入的数据必须为数字符号。
3.编辑PhoneActivity.java内容:
3.编辑PhoneActivity.java内容:
1
package
com.gaolei.phone;
2
3 import android.app.Activity;
4 import android.content.Intent;
5 import android.net.Uri;
6 import android.os.Bundle;
7 import android.view.View;
8 import android.widget.Button;
9 import android.widget.EditText;
10
11 public class PhoneActivity extends Activity {
12 /** *//** Called when the activity is first created. */
13 /**//* 声明Button对象 */
14 private EditText mobileText;
15
16 @Override
17 public void onCreate(Bundle savedInstanceState) {
18 super.onCreate(savedInstanceState);
19 setContentView(R.layout.main);
20
21 // 根据ID获取编辑框
22 mobileText = (EditText) findViewById(R.id.mobile);
23
24 // 根据ID获取按钮
25 Button button = (Button) this.findViewById(R.id.button);
26 // 为按钮添加被单击事件
27 button.setOnClickListener(new ButtonClickListener());
28 }
29
30 private final class ButtonClickListener implements View.OnClickListener {
31
32 public void onClick(View v) {
33 // 获取电话号码
34 String number = mobileText.getText().toString();
35
36 /**//*
37 或者创建一个新的Intent 运行action.CALL的常数与通过Uri将字符串直接带入
38 Intent intent = new Intent ( "android.intent.action.CALL", Uri.parse("tel:" + number ) );
39 */
40 // 生成呼叫示意图
41 Intent intent = new Intent();
42 intent.setAction("android.intent.action.CALL");
43 intent.setData(Uri.parse("tel:" + number));
44
45 // 开始呼叫
46 startActivity(intent); // 方法内部会自动为Intent添加类别:android.intent.category.DEFAULT
47 }
48 }
49}
50
2
3 import android.app.Activity;
4 import android.content.Intent;
5 import android.net.Uri;
6 import android.os.Bundle;
7 import android.view.View;
8 import android.widget.Button;
9 import android.widget.EditText;
10
11 public class PhoneActivity extends Activity {
12 /** *//** Called when the activity is first created. */
13 /**//* 声明Button对象 */
14 private EditText mobileText;
15
16 @Override
17 public void onCreate(Bundle savedInstanceState) {
18 super.onCreate(savedInstanceState);
19 setContentView(R.layout.main);
20
21 // 根据ID获取编辑框
22 mobileText = (EditText) findViewById(R.id.mobile);
23
24 // 根据ID获取按钮
25 Button button = (Button) this.findViewById(R.id.button);
26 // 为按钮添加被单击事件
27 button.setOnClickListener(new ButtonClickListener());
28 }
29
30 private final class ButtonClickListener implements View.OnClickListener {
31
32 public void onClick(View v) {
33 // 获取电话号码
34 String number = mobileText.getText().toString();
35
36 /**//*
37 或者创建一个新的Intent 运行action.CALL的常数与通过Uri将字符串直接带入
38 Intent intent = new Intent ( "android.intent.action.CALL", Uri.parse("tel:" + number ) );
39 */
40 // 生成呼叫示意图
41 Intent intent = new Intent();
42 intent.setAction("android.intent.action.CALL");
43 intent.setData(Uri.parse("tel:" + number));
44
45 // 开始呼叫
46 startActivity(intent); // 方法内部会自动为Intent添加类别:android.intent.category.DEFAULT
47 }
48 }
49}
50
4.编辑AndroidManifest.xml内容:
请注意,需要先添加拨打电话的权限android.permission.CALL_PHONE,否则当你单击按钮时,会发生运行时错误。
三、启动模拟器
我们给谁打电话?我们可以启动两个模拟器。使用一个模拟器给另一个模拟器拨打。首先我们使用工具栏上的手机图标再添加一个Android4.0.3的模拟器,另记一个名称。
在启动两个模拟器之前,我们需要模拟器能“接收到信号”。如果我们的机器是联网的,启动模拟器后,主界面显示信号强度的旁边会有一个3G的字样,这说明模拟器已经能接收到信号了。如果我们的机器不能联网,那么将自己的IP地址、网关和DNS服务器都设置为相同的值,比如都设置为192.168.0.100。如果我们的机器是在局域网下,但没有联网,那么将自己的网关和DNS设置为路由的IP即可,一般情况下路由的IP是192.168.0.1。
OK,现在我们启动两个模拟器!
四、拨打电话
我们启动模拟器后,可以看到模拟器窗口的标题栏上有5554和5556的字样。这是模拟器监听的端口即——127.0.0.1:5554。
在工程上右键盘,Run As Android Application,选择其中的一个模拟器。比如选择了端口为5554的模拟器。OK,程序被加载到模拟器中了,会被自动运行。
我们在电话号码编辑框中输入5556(接收端模拟器的端口号),点击呼叫按钮!
OK,你看到效果了吗?5554模拟器显示正在呼叫, 5556模拟器有来电显示...。
五、使用ADT插件呼叫模拟器
如果机器太慢,无法启动两个模拟器,我们可以只启动一个模拟器。然后在菜单windows->show view->other->Android->Emulator Control打开Emulator Control面板。
Telephony Actions分组框中,Voice是呼叫,SMS是发送短信。Incoming number是模拟器的端口号,我们也可以使用这个功能给我们的模拟器拨打电话或发送短信。
1
<?
xml version="1.0" encoding="utf-8"
?>
2 < manifest xmlns:android ="http://schemas.android.com/apk/res/android"
3 package ="com.gaolei.phone"
4 android:versionCode ="1"
5 android:versionName ="1.0" >
6
7 < uses-sdk android:minSdkVersion ="15" />
8 <!-- 注册使用拨打电话功能的权限 -->
9 < uses-permission android:name ="android.permission.CALL_PHONE" />
10
11 < application
12 android:icon ="@drawable/ic_launcher"
13 android:label ="@string/app_name" >
14 < activity
15 android:name =".PhoneActivity"
16 android:label ="@string/app_name" >
17 < intent-filter >
18 < action android:name ="android.intent.action.MAIN" />
19
20 < category android:name ="android.intent.category.LAUNCHER" />
21 </ intent-filter >
22 </ activity >
23 </ application >
24 </ manifest >
2 < manifest xmlns:android ="http://schemas.android.com/apk/res/android"
3 package ="com.gaolei.phone"
4 android:versionCode ="1"
5 android:versionName ="1.0" >
6
7 < uses-sdk android:minSdkVersion ="15" />
8 <!-- 注册使用拨打电话功能的权限 -->
9 < uses-permission android:name ="android.permission.CALL_PHONE" />
10
11 < application
12 android:icon ="@drawable/ic_launcher"
13 android:label ="@string/app_name" >
14 < activity
15 android:name =".PhoneActivity"
16 android:label ="@string/app_name" >
17 < intent-filter >
18 < action android:name ="android.intent.action.MAIN" />
19
20 < category android:name ="android.intent.category.LAUNCHER" />
21 </ intent-filter >
22 </ activity >
23 </ application >
24 </ manifest >
注册使用拨打电话功能的权限,如果没有注册这个,将使用不了系统的拨打电话功能。以后在我们的应用程序开发中,有使用到系统功能的必须在这个文件中进行注册。我们可以查看Android的帮助手册都有哪些功能。(.../android-sdk-windows/docs/reference/android/Manifest.permission.html)
也可以使用"android.Action.Dialer"的方式,调用虚拟键盘来拨打电话,作为本小节的扩展学习,基本上,只需要在自定义Intent时将Action.CALL改为Action.DIAL即可,代码段如下所述:
- Intent mIntent = new Intent ("android.intent.action.DIAL",Uri.parse("tel:"+""));
- startActivity(mIntent);
三、启动模拟器
我们给谁打电话?我们可以启动两个模拟器。使用一个模拟器给另一个模拟器拨打。首先我们使用工具栏上的手机图标再添加一个Android4.0.3的模拟器,另记一个名称。
在启动两个模拟器之前,我们需要模拟器能“接收到信号”。如果我们的机器是联网的,启动模拟器后,主界面显示信号强度的旁边会有一个3G的字样,这说明模拟器已经能接收到信号了。如果我们的机器不能联网,那么将自己的IP地址、网关和DNS服务器都设置为相同的值,比如都设置为192.168.0.100。如果我们的机器是在局域网下,但没有联网,那么将自己的网关和DNS设置为路由的IP即可,一般情况下路由的IP是192.168.0.1。
OK,现在我们启动两个模拟器!
四、拨打电话
我们启动模拟器后,可以看到模拟器窗口的标题栏上有5554和5556的字样。这是模拟器监听的端口即——127.0.0.1:5554。
在工程上右键盘,Run As Android Application,选择其中的一个模拟器。比如选择了端口为5554的模拟器。OK,程序被加载到模拟器中了,会被自动运行。
我们在电话号码编辑框中输入5556(接收端模拟器的端口号),点击呼叫按钮!
OK,你看到效果了吗?5554模拟器显示正在呼叫, 5556模拟器有来电显示...。
五、使用ADT插件呼叫模拟器
如果机器太慢,无法启动两个模拟器,我们可以只启动一个模拟器。然后在菜单windows->show view->other->Android->Emulator Control打开Emulator Control面板。
Telephony Actions分组框中,Voice是呼叫,SMS是发送短信。Incoming number是模拟器的端口号,我们也可以使用这个功能给我们的模拟器拨打电话或发送短信。
-- |