<LinearLayout
xmlns:android = "http://schemas.android.com/apk/res/android"
android:orientation = "vertical"
android:layout_width = "fill_parent"
android:layout_height = "fill_parent"
android:weightSum = "1"
android:gravity = "center">
<TextView
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:textAppearance = "?android:attr/textAppearanceLarge"
android:text = "Hello, your name:"
android:layout_weight = "0.07"
android:textStyle = "bold" />
<EditText
android:layout_width = "216dp"
android:layout_height = "wrap_content"
android:id = "@+id/name" />
<Button
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:text = "@string/next_page"
android:id = "@+id/next" />
</LinearLayout>
|