zoho / salesiq-mobilisten-android-sample

Sample App to integrate SalesIQ Android SDK (Mobilisten)
https://mobilisten.io/
14 stars 4 forks source link

how to hide zoho salesiq android when loading with login facebook #4

Closed stnwj closed 4 years ago

stnwj commented 4 years ago

this result: 101893517_577495366537414_1321079266770681856_n

this code when hide in activitylogin image

this code when login fb: image

Angu-G commented 4 years ago

Hello @stnwj , The API you have used is activity specific ie., the chat bubble will be shown or hidden only in the specific activity from where ZohoSalesIQ.Chat.setVisibility(MbedableComponent.CHAT,false) is called. So please make sure that it is called from loading activity. Also we have an API to show/hide chat bubble throughout your application. ZohoSalesIQ.Chat.setFloatingChatButtonVisibility(true/false); api link You can call this API with false param upon your loading screen and true param from where you want to show the chat bubble.

stnwj commented 4 years ago

t

Hello @stnwj , The API you have used is activity specific ie., the chat bubble will be shown or hidden only in the specific activity from where ZohoSalesIQ.Chat.setVisibility(MbedableComponent.CHAT,false) is called. So please make sure that it is called from loading activity. Also we have an API to show/hide chat bubble throughout your application. ZohoSalesIQ.Chat.setFloatingChatButtonVisibility(true/false); api link You can call this API with false param upon your loading screen and true param from where you want to show the chat bubble.

thx you. it's work