Intent使用总结
程序员文章站
2022-07-14 18:23:48
...
使用方法
- 调用打电话
1.调用打电话
Intent intent = new Intent();//创建意图
intent.setAction(Intent.ACTION_CALL);//设置动作
intent.setData(Uri.parse("tel://110"));//设置数据
startActivity(intent);//开启意图