アプリケーションでのチャットに 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 をタグ付けしています)*