<?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 -->
<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="#ACEECA"
    >

    <TextView
        android:id="@+id/text_title"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/title_label_text" 
        android:textColor="#000000"
        />
    
    <EditText
        android:id="@+id/text_box"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="@string/title_box_hint" 
        />
    <Button
        android:id="@+id/display_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/button_text"
        android:layout_gravity="center" 
        />

</LinearLayout>