UI Android

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

    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    />
    
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="This is my first Android Application!" />
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="And this is a clickable button!" />
    

//strings.xml


    Hello World, MainActivity!
    HelloWorld