no-translate

Display unread chats count

Use the following method to display the number of unread chats in your Android app.
Napisany przez Alex
Zaktualizowano 2 miesiące temu

You can get the number of current unread chats (e.g. on the app icon) by calling this method:

HelpCrunch.getUnreadChatsCount(new Callback<Integer>() {
            @Override
            public void onSuccess(Integer result) {
               //handle result
            }

            @Override
            public void onError(@NotNull String message) {
               //handle error
            }
        });

Czy odpowiedzieliśmy na Twoje pytanie?