My app is using Applozic's UI. When you are looking at a chat conversation and hold down on a message, you are given the following Message Options: copy, forward, reply. I am hoping to add another option for group messages-- 'Reply privately', which would create a new conversation between you and whoever sent that message. Is this possible?
I'm looking at the project in GitHub and don't know where to begin: https://github.com/AppLozic/Applozic-Android-SDK
Applozic's documentation does not cover this, and getting in contact with their support is kind of a headache.
You can achieve this by importing source code in your project and adding an option, handling the event click of that option
This are the step you can follow to achieve it.
You can import the source code from this doc link and make sure to fork the GitHub repo and import the source code from forked GitHub repo link. If any new changes or release comes you can merge the changes from the master of the GitHub repo in the forked
Create a string with name
chat_private
in strings.xml file in the modulemobicomkitui
folder res dir and set the value for string namechat_private
Example :
<string name="chat_private">Private Reply</string>
3.In
DetailedConversationAdapter
file find the methodonCreateContextMenu
and add this below code in side the forfor (int i = 0; i < menuItems.length; i++) {
4.Open
MobiComConversationFragment
file and find the methodpublic boolean onContextItemSelected(MenuItem item) {
and add below code