在使用来自服务的呼叫意图时拨号后立即断开呼叫

时间:2013-02-28 07:46:44

标签: android

我正在尝试从后台服务发起呼叫。它在sony xperia p android ics上运行良好。但是在samsung galaxy y android 2.3.3调用会在启动后自动断开连接。

String number=Utils.getNumber(this, "contact"+i); 

Intent intent = new Intent(Intent.ACTION_CALL);
    intent.setData(Uri.parse("tel:" + number));
    intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
     intent.addFlags(Intent.FLAG_FROM_BACKGROUND);
    startActivity(intent);

请注意它在sony xperia p上的正常工作

0 个答案:

没有答案