SherlockFragment中的NotificationManager

时间:2013-07-01 18:34:25

标签: android android-fragments actionbarsherlock android-notifications

我的代码适用于我的应用中使用SherlockFragment的通知:

代码:

NotificationManager nm = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);

错误:

  

错误:创建常量NOTIFICATION_SERVICE

1 个答案:

答案 0 :(得分:3)

{p} getSystemService()NOTIFICATION_SERVICEContext上定义。 Activity继承自Context,但SherlockFragment未继承。

将您的代码更改为:

NotificationManager nm = (NotificationManager)getActivity().getSystemService(Context.NOTIFICATION_SERVICE);