<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical|center_horizontal"
>
<TableRow
android:gravity="center">
<EditText
android:id="@+id/PasswordText"
android:password="true"
android:layout_height="wrap_content"
android:layout_width="250px"
android:layout_centerHorizontal="true"
android:layout_below="@+id/PasswordLabel"
android:singleLine="true"
/>
</TableRow>
<TableRow
android:gravity="center">
<Button
android:id="@+id/LoginButton"
android:text="Log in"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
/>
</TableRow>
</TableLayout>