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

  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent" android:layout_height="wrap_content"
  android:background="@drawable/icon" android:padding="10dip">
      android:layout_height="wrap_content" android:text="UserName" />
      android:layout_height="wrap_content"
    android:background="@android:drawable/editbox_background"
    android:layout_below="@id/label" />
      android:layout_height="wrap_content" android:layout_below="@id/entry"
    android:layout_alignParentRight="true"
    android:layout_marginLeft="10dip" android:text="Cancel" />
      android:layout_height="wrap_content"
    android:layout_toLeftOf="@id/cancel"
    android:layout_alignTop="@id/cancel" android:text="OK" />