<?xml version="1.0" encoding="utf-8"?>
<!-- I try to make my layout files more human readable -->
<!-- Step one, change my string values to values from the strings file -->
<!-- Step two, change to use color values -->
<!-- Step three, change to use drawables -->
<!-- Step four, use styles -->
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" 
    android:background="@drawable/background_salmon_gradient"
    style="@style/page_element"
    >

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        style="@style/base_header_wrapper.minty" 
        >
	    <TextView
	        android:id="@+id/text_title"
	        android:layout_width="fill_parent"
	        android:layout_height="wrap_content"
	        android:text="@string/title_label_text" 
	        style="@style/header_title"
	        android:layout_centerInParent="true"
	        />
        
    </RelativeLayout>
    
    <!-- Added inputType functionality to turn off the auto-correct 
         and auto-suggest that was driving me nuts. -->
    <EditText
        android:id="@+id/text_box"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="@string/title_box_hint" 
        android:inputType="textVisiblePassword"
        />
    
    <!-- Added a LinearLayout around the button to give it a little padding -->
    <LinearLayout
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        style="@style/page_element"
	    android:layout_gravity="center" 
        >

        <!-- By using a color selector, we can have the text color 
             automagically change, now in the style... -->
        	    
	    <Button
	        android:id="@+id/display_button"
	        android:layout_width="wrap_content"
	        android:layout_height="wrap_content"
	        android:text="@string/button_text"
	        style="@style/button_standard"
	        />
	        
    </LinearLayout>
    <Button
        android:id="@+id/superfluous_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Superfluous Button"
        style="@style/button_standard"
        android:layout_gravity="center" 
        />
    
</LinearLayout>