Reply

Replay message is a feature that allows users to reply for image and text message. Reply message appears in the MyQuotedMessageView class and OtherQuotedMessageView.

In MirrorFly UIKit for Android, there are currently two type of messages that users can reply : text and image. Our own messages and other member messages are replied in group chat and single chat from the sender’s mobile device.

The following are the reply message style and attributes for customizations.#
<style name="Custom" parent="MirrorFly">
<item name="mf_my_quoted_message_style">@style/CustomSender</item>
<item name="mf_other_quoted_message_style">@style/CustomReceiver</item>
</style>
<style name="CustomSender" parent="Widget.MirrorFly.MyQuotedMessageView">
<item name="mf_quoted_message_title_icon">@drawable/icon_reply_filled</item>
<item name="mf_quoted_message_title_icon_tint">@color/onlight_03</item>
<item name="mf_quoted_message_title_text_appearance">@style/MirrorFlyCaption1OnLight03</item>
<item name="mf_quoted_message_background">@drawable/mf_shape_chat_bubble</item>
<item name="mf_quoted_message_background_tint">@color/background_100</item>
<item name="mf_quoted_message_file_icon_tint">@color/onlight_03</item>
<item name="mf_quoted_message_text_appearance">@style/MirrorFlyCaption1OnLight03</item>
</style>
<style name="CustomReceiver" parent="Widget.MirrorFly.OtherQuotedMessageView">
<item name="mf_quoted_message_title_icon">@drawable/icon_reply_filled</item>
<item name="mf_quoted_message_title_icon_tint">@color/onlight_03</item>
<item name="mf_quoted_message_title_text_appearance">@style/MirrorFlyCaption1OnLight03</item>
<item name="mf_quoted_message_background">@drawable/mf_shape_chat_bubble</item>
<item name="mf_quoted_message_background_tint">@color/background_100</item>
<item name="mf_quoted_message_file_icon_tint">@color/onlight_03</item>
<item name="mf_quoted_message_text_appearance">@style/MirrorFlyCaption1OnLight03</item>
</style>