<?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 -->
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" 
    android:background="@drawable/background_minty_gradient"
    >

    <!-- Illustrating a manual change of a style -->
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="@style/base_header_wrapper.salmon"
        android:layout_centerInParent="true"
        android:background="@color/transparent"
        >
       
	    <TextView 
	        android:layout_width="fill_parent"
	        android:layout_height="wrap_content"
	        android:id="@+id/text_title"
	        android:text="@string/default_title_text"
	        style="@style/header_title.huge"
	        />

    </LinearLayout>
    

</RelativeLayout>