android 弹出拨号盘

来源:互联网 发布:qt开发的软件 编辑:程序博客网 时间:2024/06/03 11:15
<uses-permission android:name="android.permission.CALL_PRIVILEGED"></uses-permission> 
 
 

Intent intentphone = new Intent(Intent.ACTION_DIAL,Uri.parse("tel:" + getString(R.string.shop_phone)));
startActivity(intentphone);
原创粉丝点击