가장 쉬운 해결책은 응용 프로그램에 Firebase를 추가하는 것입니다.
그러면 Firebase Cloud Messaging Service이 필요합니다. 당신이 당신의 중포 기지 대시 보드에 알림 패널로 이동하는 경우, 특정 인스턴트 알림을 보낼 수
public class NotificationService extends FirebaseMessagingService {
@Override public void onMessageReceived(RemoteMessage remoteMessage) {
super.onMessageReceived(remoteMessage);
Timber.d("Message received [" + remoteMessage + "]");
Intent intent = new Intent(this, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent =
PendingIntent.getActivity(this, 1410, intent, PendingIntent.FLAG_ONE_SHOT);
NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this).setSmallIcon(R.drawable.logo)
.setContentTitle("Notification!")
.setContentText(remoteMessage.getNotification().getBody())
.setAutoCancel(true)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
if (notificationManager != null) {
notificationManager.notify(1410, notificationBuilder.build());
}
}
}
compile 'com.google.firebase:firebase-messaging:11.6.2'
는 서비스 매니페스트
<service
android:name=".model.notifications.NotificationService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
이 서비스를 추가하고 만들 사용자 또는 귀하의 앱을 사용하는 모든 사용자.
seach for 'android rss feed' –
알림은 큰 제목입니다. Android 응용 프로그램에 대해 검색하고 구현 방법을 확인해야합니다. 그런 다음 구체적인 질문이 있으면 여기로 도움을 요청하십시오. –