我正在使用zopim sdk在我的应用程序中聊天,我正在尝试更改聊天活动的标题。我自定义了这样的标题字符串并重建了我的项目:
<string name="chat_activity_title">My Custom Title</string>
当在构建文件夹中检查zopim的清单时,它会像这样反映出来。
<activity
android:name="com.zopim.android.sdk.prechat.ZopimChatActivity"
android:label="My Custom Title"
android:theme="@style/ZopimChatTheme"
android:windowSoftInputMode="stateUnspecified|adjustResize" >
<intent-filter android:priority="-1000" >
<action android:name="zopim.action.RESUME_CHAT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
但是当我运行我的应用程序时,它总是显示以前的标题为什么? 有什么我想念的吗?
(我在这里标记zendesk因为他们支持同样的事情)*
答案 0 :(得分:1)
请尝试替换
tools:replace="android:theme, android:label"