Mega Code Archive

 
Categories / Android / UI
 

Using static string in layout xml file from strings xml

package app.test; import android.app.Activity; import android.os.Bundle; public class Test extends Activity {     /** Called when the activity is first created. */     @Override     public void onCreate(Bundle savedInstanceState) {         super.onCreate(savedInstanceState);         setContentView(R.layout.main);     } } //main.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:orientation="vertical"     android:layout_width="fill_parent"     android:layout_height="fill_parent"     > <TextView       android:layout_width="fill_parent"      android:layout_height="wrap_content"      android:text="@string/hello"     />      <TextView       android:layout_width="fill_parent"      android:layout_height="wrap_content"      android:text="This is my first Android Application!" /> <Button     android:layout_width="fill_parent"      android:layout_height="wrap_content"      android:text="And this is a clickable button!" />      </LinearLayout> //strings.xml <?xml version="1.0" encoding="utf-8"?> <resources>     <string name="hello">Hello World, MainActivity!</string>     <string name="app_name">HelloWorld</string> </resources>