2016-12-04 48 views
2

我正在開發Android應用程序。在我的應用中,我正在使用Firebase推送通知。當我從服務器推送時,它會在Android設備的狀態欄中顯示通知。使用Firebase推送通知工作正常。請參閱下面的代碼。通知在Android中使用清潔大師應用程序變爲垃圾

我告訴notifaction像這樣的Android

private void showMatchesNotification(String message) 
    { 
     notification = new NotificationCompat.Builder(getApplicationContext()); 
     notification.setAutoCancel(true); 
     notification.setSmallIcon(R.mipmap.ic_launcher); 
     notification.setWhen(System.currentTimeMillis()); 
     notification.setTicker(message); 
     notification.setContentTitle(getApplication().getResources().getString(R.string.app_name)); 

     Intent i = new Intent(getApplicationContext(), MainActivity.class); 
     i.putExtra(MainActivity.FIELD_SELECTED_BOTTOM_TAB, MainActivity.BOTTOM_TAB_MATCHES); 
     PendingIntent pendingIntent = PendingIntent.getActivity(getApplicationContext(),0,i,PendingIntent.FLAG_UPDATE_CURRENT); 
     notification.setContentIntent(pendingIntent); 
     NotificationManager nm = (NotificationManager)getApplicationContext().getSystemService(getApplicationContext().NOTIFICATION_SERVICE); 
     nm.notify(3,notification.build()); 
    } 

問題是,當我在Android中顯示通知,通知成爲清潔大師應用垃圾。如下所示。

enter image description here

但是,當我在敲打,它顯示這樣notifactions。

enter image description here

我的問題是,被通知始終標記爲垃圾如果安裝清潔大師應用程序?有沒有辦法在Clean Master應用程序中推送通知以避免成爲垃圾?我想在狀態欄中顯示我的應用的通知。不在垃圾箱裏。所以請我該怎麼做?

+1

只是一個思考清潔大師的食物:http://forums.androidcentral.com/ask-question/530007-concerned-about-clean-master-s-data-collection-privacy-practices-2.html http ://androidforums.com/threads/cleaning-apps.984881/page-2#post-7186025 –

+0

我面臨同樣的問題。 CM本身就是JUNK應用程序,令人沮喪。爲什麼它會將來自特定應用程序的通知視爲非垃圾通知,並將其餘應用程序視爲垃圾通知? – Atul

回答

0

只需禁用CM中的「垃圾郵件通知」功能,這是您首先必須啓用的功能,因爲它在安裝時並未激活,當我使用CM時,我從未啓用垃圾郵件通知「功能(也可能被稱爲」安靜通知「),我更願意通過每個單獨的應用程序設置來控制通知。否則,我真的不覺得他們是一個問題。

0

當您在CleanMaster應用程序中啓用垃圾郵件通知時,它會將通知放到其他應用程序的垃圾郵件中。點擊右上角的通知清理工具中的設置按鈕,您可以看到所有已啓用或​​禁用通知清理工具的應用程序。您可以取消選中您的應用,以防止Cleanmaster將您的通知放到垃圾箱中。

相關問題