-1
私はアンドロイドに新しいです。助けてください。
私はこのコードを使用してみました...バックグラウンドサービスから電話をかけるには?
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);
は動作しませんでした:それが突然停止しました。
私は必要な許可を述べました
https://stackoverflow.com/questions/23353173/unfortunately-myapp-ha-stopped-how-can-i-solve-this – CommonsWare
Welcome to StackOverflow!あなたの問題を解決するために、より詳細な情報を提供してください。 [How to Ask](https://stackoverflow.com/help/how-to-ask)も参照してください。 – Felix