APP内打电话的小功能

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_34781711/article/details/81779159
// 前提
<uses-permission android:name="android.permission.CALL_PHONE" />
// 点击事件
String phoneNum = "1331321****";
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phoneNum));
startActivity(intent);

猜你喜欢

转载自blog.csdn.net/qq_34781711/article/details/81779159