Package io.rong.imkit.feature.mention
Interface IMentionedInputListener
-
- All Implemented Interfaces:
public interface IMentionedInputListener
-
-
Method Summary
Modifier and Type Method Description abstract booleanonMentionedInput(ConversationType conversationType, String targetId)当启动@功能,即在rc_config. -
-
Method Detail
-
onMentionedInput
abstract boolean onMentionedInput(ConversationType conversationType, String targetId)
当启动@功能,即在rc_config.xml中设置rc_enable_mentioned_message 为true后,该方法用于设置在群组或者讨论组中,输入@时的监听。 如果onMentionedInput返回true, 则您自己处理显示@成员 的选择界面;如果返回false, 则会显示融云SDK默认@成员选择界面。
- Parameters:
conversationType- 会话类型targetId- 会话 id- Returns:
返回true, 则您自己处理显示 @ 成员的选择界面;如果返回false, 则会显示融云SDK默认@成员选择界面。
-
-
-
-