Computer >> Máy Tính >  >> Lập trình >> Android

Làm thế nào để sử dụng nhắn tin firebase trong ứng dụng Android?

Ví dụ này trình bày Cách sử dụng nhắn tin firebase trong ứng dụng android

Bước 1 - Tạo một dự án mới trong Android Studio, đi tới Tệp ⇒ Dự án Mới và điền tất cả các chi tiết cần thiết để tạo một dự án mới.

Bước 2 - Thêm mã sau vào src / MainActivity.java

<?xml version = "1.0" encoding = "utf-8"?>
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
public class MainActivity extends FragmentActivity {
   @Override
   public void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
   }
}

Bước 3 - Thêm mã sau vào src / MyFirebaseMessagingService.java

<?xml version = "1.0" encoding = "utf-8"?>
import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.content.Context;
import android.graphics.Color;
import android.os.Build;
import android.support.v4.app.NotificationCompat;
import android.support.v4.content.ContextCompat;
import android.util.Log;
import com.google.firebase.messaging.FirebaseMessagingService;
import com.google.firebase.messaging.RemoteMessage;
import org.json.JSONObject;
import java.util.Map;

public class MyFirebaseMessagingService extends FirebaseMessagingService {
   @Override
   public void onNewToken(String s) {
      Log.e("NEW_TOKEN", s);
   }
   @Override
   public void onMessageReceived(RemoteMessage remoteMessage) {
      Map<String, String> params = remoteMessage.getData();
      JSONObject object = new JSONObject(params);
      Log.e("JSON_OBJECT", object.toString());
      String NOTIFICATION_CHANNEL_ID = "sairam";
      long pattern[] = {0, 1000, 500, 1000};
      NotificationManager mNotificationManager =
      (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
      if (Build.VERSION.SDK_INT > = Build.VERSION_CODES.O) {
         NotificationChannel notificationChannel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, "Your Notifications",
         NotificationManager.IMPORTANCE_HIGH);
         notificationChannel.setDescription("");
         notificationChannel.enableLights(true);
         notificationChannel.setLightColor(Color.RED);
         notificationChannel.setVibrationPattern(pattern);
         notificationChannel.enableVibration(true);
         mNotificationManager.createNotificationChannel(notificationChannel);
      }
      // to diaplay notification in DND Mode
      if (Build.VERSION.SDK_INT > = Build.VERSION_CODES.O) {
         NotificationChannel channel = mNotificationManager.getNotificationChannel(NOTIFICATION_CHANNEL_ID);
         channel.canBypassDnd();
      }
      NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, NOTIFICATION_CHANNEL_ID);
      notificationBuilder.setAutoCancel(true)
      .setColor(ContextCompat.getColor(this, R.color.colorAccent))
      .setContentTitle(getString(R.string.app_name))
      .setContentText(remoteMessage.getNotification().getBody())
      .setDefaults(Notification.DEFAULT_ALL)
      .setWhen(System.currentTimeMillis())
      .setSmallIcon(R.drawable.ic_launcher_background)
      .setAutoCancel(true);
      mNotificationManager.notify(1000, notificationBuilder.build());
   }
}

Hãy thử chạy ứng dụng của bạn. Tôi giả sử bạn đã kết nối thiết bị Di động Android thực tế với máy tính của mình. Để chạy ứng dụng từ android studio, hãy mở một trong các tệp hoạt động của dự án của bạn và nhấp vào biểu tượng Chạy từ thanh công cụ. Chọn thiết bị di động của bạn làm tùy chọn, sau đó kiểm tra thiết bị di động sẽ hiển thị màn hình mặc định của bạn -

Làm thế nào để sử dụng nhắn tin firebase trong ứng dụng Android?