আপনি আপনার সোর্স কোডে এবং অন্যান্য এক্সএমএল ফাইলে এ < string> এলিমেন্টের name এট্রিবিউট দ্বারা নির্ধারিত রিসোর্স নাম ব্যবহার করে আপনার স্ট্রিং রিসোর্স উল্লেখ করতে পারেন।
আপনার সোর্স কোডে আপনি সিন্ট্যাক্স R.string.< string_name> এর সাথে একটি স্ট্রিং রিসোর্স উল্লেখ করতে পারেন। এখানে নান ধরনের পদ্ধতি আছে যা স্ট্রিং রিসোর্স কে এই উপায়ে গ্রহন করে।
উদাহরণস্বরূপ:
// Get a string resource from your app's Resources
String hello = getResources().getString(R.string.hello_world);
// Or supply a string resource to a method that requires a string
TextView textView = new TextView(this);
textView.setText(R.string.hello_world);
অন্য এক্সএমএল ফাইলে আপনি সিনট্যাক্স @string/< string_name> এর সাথে একটি স্ট্রিং রিসোর্স উল্লেখ করতে পারেন যখনই এক্সএমএল এট্রিবিউট একটি স্ট্রিং ভ্যালু গ্রহণ করে।
উদাহরণস্বরূপ:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />