String test = "Sign Up"; String test = getResources().getString(R.string.sign_up);
R.string.browserSentence = "You are using $1%s to browse the Internet."; String browser = getString(R.string.browserSentence, browser.getBrowser());
TextView textView = new TextView(this); TextView.setText(“Sign Up”); TextView textView = new TextView(this); textView.setText(R.string.sign_up);
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/hello_world" />