Post

【Android】项目:电话拨号器

  • 要使用系统API拨号需要授权:在表单文件AndroidManifest.xml中添加:
1
2
3
4
Intentintent = new Intent();    // 意图要干什么
intent.setAction(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:" + number));
startActivity(intent);

电话拨号器-输入界面

电话拨号器-拨号界面

This post is licensed under CC BY 4.0 by the author.