Service
を作成するAndroid ライブラリがありNotification
ます。私が理解していることから、 ( ) を設定するNotification
必要があります。そうしないと、ランタイム例外がスローされます。contentIntent
PendingIntent
問題は、ユーザーがこれをそのまま使用しService
たり、拡張したりしてPendingIntent
、Notification
. ただし、これを行わないことを選択しPendingIntent
た場合は、例外がないように を何かに設定する必要があります。PendingIntent
フィルインとして機能するダミーを作成する方法はありますか?
createNotification
メソッドのコードの例を次に示します。
PendingIntent p;
if(getPendingIntentCallback != null) {
p = getPendingIntentCallback.getPendingIntent();
}
else {
p = ?;
}
notification.contentIntent = p;