This is a Resource File that includes all the strings within the app. /res/values/strings.xml Every ui element in a Layout should reference its text from here.

Example strings.xml

<resources>
    <string name="app_name">learners</string>
</resources>

Referencing From strings.xml

<activity
	android:name="@string/app_name">
</activity>