android - 如何在按钮单击时发送推送通知

标签 android json push-notification onclick android-volley

我已经为我的 Android 应用程序创建了推送通知,当我尝试从 firebase 控制台发送它时它可以正常工作。现在我想要的是在用户点击注册时发出推送通知,然后向其他用户显示通知。

我在谷歌中搜索过,但没有找到其中一个示例。目标是通知其他用户我的应用中有新用户注册。

感谢帮助

public class MyFirebaseMessagingService extends FirebaseMessagingService {

    private static final String TAG = "MyFirebaseMessagingService";
    public static final int ID_SMALL_NOTIFICATION = 235;
    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {
        // ...

        // TODO(developer): Handle FCM messages here.

        Log.d(TAG, "From: " + remoteMessage.getFrom());

        // Check if message contains a data payload.
        if (remoteMessage.getData().size() > 0) {
            Log.d(TAG, "Message data payload: " + remoteMessage.getData());
            sendNotification("Hi ini isinya");
        }

        // Check if message contains a notification payload.
        if (remoteMessage.getNotification() != null) {
            Log.d(TAG,"Message Notification Title" + remoteMessage.getNotification().getTitle());
            Log.d(TAG, "Message Notification Body: " + remoteMessage.getNotification().getBody());
        }

        // Also if you intend on generating your own notifications as a result of a received FCM
        // message, here is where that should be initiated. See sendNotification method below.
    }

    private void sendNotification(String messageBody) {
        Intent intent = new Intent(this, MainActivity.class);
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        PendingIntent pendingIntent = PendingIntent.getActivity(this, ID_SMALL_NOTIFICATION, intent,
                PendingIntent.FLAG_ONE_SHOT);

        String channelId = "fcm_default_channel";
        Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
        NotificationCompat.Builder notificationBuilder =
                new NotificationCompat.Builder(this, channelId)
                        .setSmallIcon(R.drawable.icon)
                        .setContentTitle("FCM Message")
                        .setContentText(messageBody)
                        .setAutoCancel(true)
                        .setSound(defaultSoundUri)
                        .setContentIntent(pendingIntent);

        NotificationManager notificationManager =
                (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

        notificationManager.notify(ID_SMALL_NOTIFICATION, notificationBuilder.build());
    }

}

最佳答案

我没明白你的意思,但你可以使用 Volly Json 对象请求

首先您需要从 Firebase 控制台复制您的服务器 key ,打开Firebase Console并选择你的项目

其次在你的项目中添加Volley依赖

compile 'com.mcxiaoke.volley:library:1.0.19'

然后你可以添加这段代码来推送

private void sendFCMPush() {

            String SERVER_KEY = YOUR_SERVER_KEY;
            String msg = "this is test message";
            String title = "my title";
            String token = FCM_TOKEN;

            JSONObject obj = null;
        JSONObject objData = null;
        JSONObject dataobjData = null;

        try {
            obj = new JSONObject();
            objData = new JSONObject();

            objData.put("body", msg);
            objData.put("title", title);
            objData.put("sound", "default");
            objData.put("icon", "icon_name"); //   icon_name
            objData.put("tag", token);
            objData.put("priority", "high");

            dataobjData = new JSONObject();
            dataobjData.put("text", msg);
            dataobjData.put("title", title);

            obj.put("to", token);
            //obj.put("priority", "high");

            obj.put("notification", objData);
            obj.put("data", dataobjData);
            Log.e("return here>>", obj.toString());
        } catch (JSONException e) {
            e.printStackTrace();
        }

            JsonObjectRequest jsObjRequest = new JsonObjectRequest(Request.Method.POST, Constants.FCM_PUSH_URL, obj,
                    new Response.Listener<JSONObject>() {
                        @Override
                        public void onResponse(JSONObject response) {
                            Log.e("True", response + "");
                        }
                    },
                    new Response.ErrorListener() {
                        @Override
                        public void onErrorResponse(VolleyError error) {
                            Log.e("False", error + "");
                        }
                    }) {
                @Override
                public Map<String, String> getHeaders() throws AuthFailureError {
                    Map<String, String> params = new HashMap<String, String>();
                    params.put("Authorization", "key=" + SERVER_KEY);
                    params.put("Content-Type", "application/json");
                    return params;
                }
            };
            RequestQueue requestQueue = Volley.newRequestQueue(this);
            int socketTimeout = 1000 * 60;// 60 seconds
            RetryPolicy policy = new DefaultRetryPolicy(socketTimeout, DefaultRetryPolicy.DEFAULT_MAX_RETRIES, DefaultRetryPolicy.DEFAULT_BACKOFF_MULT);
            jsObjRequest.setRetryPolicy(policy);
            requestQueue.add(jsObjRequest);
}

希望对你有帮助

关于android - 如何在按钮单击时发送推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47659429/

相关文章:

Android:从 Hashmap Arraylist 获取单个值?

ruby-on-rails - Rails 禁用 POST/PUT/PATCH 正文的 JSON 解析

c# - 将字符串数组添加到 JObject

java - 推送网址打不开

使用 cordova 的 Android/ios 异步通知

Android Studio E/dalvikvm:找不到类 '.DatabaseHelper',从方法 .DatabaseManager 引用

android - 使用 AsyncTaskLoader 和 Fragment 的 onCreateLoader 方法中的不兼容类型

Android 颜色格式(RGB565、ARGB8888)

带有 json 的 android ListView - 如何使用 AsyncTask?

ios - 应用程序打开时更新角标(Badge)而不发出警报