虽然android系统自带有拨号功能,但有时候还是需要使用它。比如有个通讯录软件,记录着很多联系人以及联系人的号码,当选中某个联系人的时候,可能需要直接拨号。否则的话,还要记下他的号码,再切换到系统自带的拨号界面,再拨号,操作很不方便。
这里做一个很简单的拨号程序,运行的最终效果如下:
点击最后一个“拨号程序”:
如果直接点拨打此号码按钮:
在两个模拟器中做实验:
接通后:
实现这个功能,首先在eclipse中新建一个android project
在main.xml中把控件编辑好
在string.xml中把需要用到的字符串定义好
最后在MainActivity.java中对按钮编写逻辑代码,如下所示:
- public class MainActivity extends Activity {
-
/** Called when the activity is first created. */
-
@Override
-
public void onCreate(Bundle savedInstanceState) {
-
super.onCreate(savedInstanceState);
-
setContentView(R.layout.main);
-
-
phone_number_editText = (EditText) findViewById(R.id.phone_number_input_textView);
-
call_this_number_button = (Button) findViewById(R.id.call_the_number_button);
-
-
call_this_number_button.setOnClickListener(new OnClickListener() {
-
@Override
-
public void onClick(View arg0) {
-
String phone_number = phone_number_editText.getText().toString().trim();
-
if(phone_number.equals("")) {
-
Toast.makeText(MainActivity.this, R.string.str_warning_phone_null, Toast.LENGTH_LONG).show();
-
} else {
-
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phone_number));
-
MainActivity.this.startActivity(intent);
-
}
-
}
-
});
-
}
-
-
private EditText phone_number_editText;
-
private Button call_this_number_button;
-
}
在做这个功能的过程中有以下几点注意事项:
在内部类中调用外部类的方法,用OuterClassName.this.methodName()调用
需要使用Intent对象来将操作和数据传递给操作系统,操作系统会根据不同的动作调用不同的实现
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phone_number));
发送Intent对象,其实是启动操作系统的另一个Activity
MainActivity.this.startActivity(intent);
需要在功能清单文件中声明打电话权限,否则会报异常,终止程序运行
如图:
打开DDMS查看错误日志信息,可以看到是没有声明打电话权限引起的错误
阅读(6480) | 评论(1) | 转发(0) |