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: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!" />