部份代码 以下 求大神 解答
public class OutgoingCallReceiver extends BroadcastReceiver {
@SuppressLint("ShowToast")
@Override
public void onReceive(Context context, Intent intent) {
String phone = this.getResultData();//得到外拔电话
System.out.println("拨号"+phone);
Toast.makeText(context, "正在拨号"+phone, 10000).show();
}
}public class OutgoingCallRecei