【发布时间】:2016-05-17 15:50:13
【问题描述】:
尽管我已经清除了通知栏中的通知,但每当我重新打开我的应用程序时,都会出现相同的推送通知。其次,我如何实现一个服务,以便我的应用可以在应用关闭时收到通知。
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
SharedPreferences sharedPreferences = getSharedPreferences(Constants.SHARED_PREF, MODE_PRIVATE);
String id = sharedPreferences.getString(Constants.UNIQUE_ID, null);
Firebase firebase = new Firebase(Constants.FIREBASE_APP + id);
firebase.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot snapshot) {
String msg = snapshot.child("msg").getValue().toString();
if (msg.equals("none"))
return;
showNotification(msg);
}
@Override
public void onCancelled(FirebaseError firebaseError) {
Log.e("The read failed: ", firebaseError.getMessage());
}
});
return START_STICKY;
}
private void showNotification(String msg){
NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
builder.setSmallIcon(R.mipmap.ic_launcher);
Intent intent = new Intent(NotificationListener.this,ViewRecord.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);
builder.setContentIntent(pendingIntent);
Uri alarmSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
builder.setSound(alarmSound);
builder.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher));
builder.setContentTitle("Notifier");
builder.setContentText(msg);
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
builder.setAutoCancel(true);
notificationManager.notify(1, builder.build());
}
我的服务代码如下。我在第一个活动的 onCreate 函数中调用该服务..
public class MyService extends Service {
public MyService() {
}
@Override
public IBinder onBind(Intent intent) {
// TODO: Return the communication channel to the service.
throw new UnsupportedOperationException("Not yet implemented");
}
@Override
public void onCreate() {
Toast.makeText(this, "The new Service was Created", Toast.LENGTH_LONG).show();
}
@Override
public void onStart(Intent intent, int startId) {
// For time consuming an long tasks you can launch a new thread here...
Toast.makeText(this, " Service Started", Toast.LENGTH_LONG).show();
}
}
【问题讨论】:
-
你是启动服务还是只绑定服务?
-
@Masum 查看我刚刚添加的服务编码....我的服务编码是否正确?
-
服务将在您打开应用程序时启动,因为显然您是在 MainActivity 的 OnCreate 中启动服务。现在,只要在您正在运行的服务中调用 onDataChange,就会触发通知。你需要使用一个布尔标志来检查服务是否已经在运行,并在你每次打开你的应用程序时相应地处理服务的启动。
-
@AmitTumkur 你能指导我更多关于编码布尔标志来检查服务吗?我是新手,所以完全不知道该怎么做哈哈...谢谢
标签: android android-studio push-notification