我在Android应用程序中使用Zopim Chat。我面临两个问题:
首先,有没有办法自定义默认聊天头像图像? 我尝试在values.xml中搜索与drawable关联的样式(如documentation中所述),但没有找到任何内容。
其次,如何应用不同的背景颜色?这是我添加到我的values.xml文件中的内容:
<style name="chat_widget_background">
<item name="android:background">@color/red</item>
</style>
我希望聊天背景为红色,但它仍然是默认的灰色。我有什么不对的吗?
感谢您的帮助!
答案 0 :(得分:0)
1 - 可以在“个人设置”中从Zopim仪表板设置聊天代理图像。该图像将自动在Android App上设置。此功能在免费计划中不可用,您可以在定价表(https://www.zopim.com/pricing)中找到。
2 - 如果你想为泡泡聊天应用不同的背景颜色,请转到“值” - >“> chat_style.xml”并编辑以下内容
<style name="_chat_bubble_visitor">
<item name="android:textSize">16sp</item>
<item name="android:textColor">@color/mycolor</item>
<item name="android:background">set your background from @drawable or @color</item>
<item name="android:minHeight">@dimen/chat_bubble_min_height</item>
<item name="android:minWidth">@dimen/chat_bubble_min_width</item>
<item name="android:gravity">start|center_vertical</item>
<item name="android:padding">@dimen/chat_bubble_padding</item>
</style>
和
<style name="_chat_bubble_agent">
....
</style>
如果您必须设置主聊天的背景,请在包含zopim聊天片段的活动中进行设置。