バックグラウンド サービスから通話を開始しようとしています。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で正しく動作していることに注意してください