我正在尝试从后台服务发起呼叫。它在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上的正常工作