Android Program to Demonstrate Usage of String.xml File

Here is the source code to Demonstrate the Usage of String.xml File in Android. The program is successfully compiled and run on a Windows system using Eclipse Ide. The program output is also shown below.

Ever wondered whenever u create an application and in the activity_main.xml u get a hello world text view in this layout, now if u see the text that is to this component it is

android:text="@string/hello_world"

but the text that u see is Hello World, this is because the following hello_world is defined in ur strings.xml which is in res/values, this is very the magic really happens, u can define array in this XML file and use later in ur activity. The following code also demonstrates this.

Main Activity

package com.example.string;
 
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
 
public class MainActivity extends Activity {
 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
 
    }
 
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
 
}

strings.xml

advertisement
<?xml version="1.0" encoding="utf-8"?>
<resources>
 
    <string name="app_name">string</string>
    <string name="action_settings">Settings</string>
    <string name="hello_world">Hello world!</string>
    <string name="my_text">Definition of text!</string>
 
    <string-array name="operating_systems">
        <item>Android</item>
        <item>iPhone</item>
        <item>Windows Mobile</item>
        <item>Linux </item>
        <item>Windows 7.0</item>
        <item>Windows 8.0</item>
        <item>Windows 8.1</item>
        <item>Chrome OS</item>
        <item>Unix</item>
        <item>Symbian</item>
    </string-array>
 
</resources>

activity_main

🎓 Register Today for Free C++ Certification - December 2025
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >
 
    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />
 
    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/textView2"
        android:layout_marginTop="110dp"
        android:text="@string/my_text"
        android:textAppearance="?android:attr/textAppearanceLarge" />
 
</RelativeLayout>

Screenshot_2013-11-21-05-42-25

Sanfoundry Global Education & Learning Series – 100+ Java Android Tutorials.

advertisement
If you wish to look at all Tutorials, go to Java Android Tutorials.

advertisement
Subscribe to our Newsletters (Subject-wise). Participate in the Sanfoundry Certification to get free Certificate of Merit. Join our social networks below and stay updated with latest contests, videos, internships and jobs!

Youtube | Telegram | LinkedIn | Instagram | Facebook | Twitter | Pinterest
Manish Bhojasia - Founder & CTO at Sanfoundry
I’m Manish - Founder and CTO at Sanfoundry. I’ve been working in tech for over 25 years, with deep focus on Linux kernel, SAN technologies, Advanced C, Full Stack and Scalable website designs.

You can connect with me on LinkedIn, watch my Youtube Masterclasses, or join my Telegram tech discussions.

If you’re in your 20s–40s and exploring new directions in your career, I also offer mentoring. Learn more here.