You should have in your application a file called String.xml located in res/values/strings.xml
You should place all your text in that file
eg.
<resources>
<string name="title">Test</string>
<string name="message">Test</string>
</resources>
this is how you would set the string value to your Textview
eg.
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/title" />
so when you decide that you want to add more languages you will need to create other string.xml files in your resource folder and add the translated strings there. the example below the folder "values-hi" refers to Hindi,
eg.
MyProject/
res/
values/
strings.xml
values-hi/
strings.xml
then android would take care to localize the language automatically based on the device configuration.
for more detailed information please refer to this link
https://developer.android.com/training/basics/supporting-devices/languages.html