I am trying to localize my app from English to various other languages. I am not sure how to change the language of the action bar titles. I have included all my activities in the manifest.xml file as shown below for a single activity.
<activity
android:name=".layers"
android:label="@string/layers">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".geometry" />
</activity>
As of today, I have been able to localize my buttons, edit texts, and view texts using the following tutorial "https://www.youtube.com/watch?v=ywF-ySiBAsc". I have not figured out though how to localize all my action bar titles. I would appreciate any help towards solving this issue. I apologize for not posting any sample code, but I have not really anything to show towards localizing action bar titles.
Thanks in advance.