0

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

代码:

NotificationManager nm = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);

错误:

错误:创建常量 NOTIFICATION_SERVICE

4

1 回答 1

3

getSystemService()NOTIFICATION_SERVICE在 上定义ContextActivity继承自Context,但SherlockFragment不继承。

将您的代码更改为:

NotificationManager nm = (NotificationManager)getActivity().getSystemService(Context.NOTIFICATION_SERVICE);
于 2013-07-01T18:36:15.367 回答