Pin a Recent Chat

Setting Maximum Pinned Chats#

To set a maximum pinning for the recent chat, use the method below.

ChatManager.setMaximumPinningForRecentChat(MAX_PIN_CHAT);
ArgumentsTypeDescription
MAX_PIN_CHATintmaximum number of chats that can be pinned.

Getting Maximum Pinned Count#

This method returns the maximum number of chats that can be pinned in the recent chat list.

ChatManager.getMaximumRecentPinChatCount();

Pinning a Recent Chat#

To pin a recent chat which makes a particular recent chat to appear at the top of the recent chat list.

FlyCore.updateRecentChatPinStatus(JID,PIN_RECENT_CHAT);
ArgumentsTypeDescription
JIDStringjid of the user/group
PIN_RECENT_CHATbooleanif true chat will be pinned else the chat will be unpinned

Recent Chat Pinned Count#

To get the pinned count on recent chat list call the below method.

int pinnedCount = FlyCore.recentChatPinnedCount();