アプリに通知を作成させようとしていますが、このコードでコンパイル エラーが発生します。
public void makeRing(Context context, boolean notify)
{
if (notify)
{
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(context)
//.setSmallIcon(R.drawable.notification_icon)
.setContentTitle("My notification")
.setContentText("Hello World!");
// Creates an explicit intent for an Activity in your app
Intent resultIntent = new Intent(context, MainActivity.class);
// The stack builder object will contain an artificial back stack for the
// started Activity.
// This ensures that navigating backward from the Activity leads out of
// your application to the Home screen.
TaskStackBuilder stackBuilder = TaskStackBuilder.create(context);
// Adds the back stack for the Intent (but not the Intent itself)
stackBuilder.addParentStack(MainActivity.class);
// Adds the Intent that starts the Activity to the top of the stack
stackBuilder.addNextIntent(resultIntent);
PendingIntent resultPendingIntent =
stackBuilder.getPendingIntent(
0,
PendingIntent.FLAG_UPDATE_CURRENT
);
mBuilder.setContentIntent(resultPendingIntent);
NotificationManager mNotificationManager =
(NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
// mId allows you to update the notification later on (first number)
mNotificationManager.notify(5954, mBuilder.build());
}
これは、Android Developers サイトから直接取得したコードです。エラーは、「TaskStackBuilder stackBuilder = TaskStackBuilder.create(context);」という行にあります。ここで、create に下線が引かれ、「メソッド create(Context) はタイプ TaskStackBuilder に対して未定義です」と表示されます。
また、最後の行の build() には下線が引かれ、「メソッド build() は NotificationCompat.Builder 型に対して未定義です。
これらを解決するにはどうすればよいですか?