0

我正在尝试从后台服务发起呼叫。它在索尼 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);

注意它在索尼 xperia p 上正常工作

4

0 回答 0