<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:background="#fff"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >

    <ListView
        android:id="@id/android:list"
        android:background="#fff"
        android:cacheColorHint="#fff"
        android:fastScrollEnabled="false"
        android:layout_marginTop="-25dip"
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"
        android:listSelector="#ffffffff"
        android:scrollingCache="false"
        android:scrollbars="none"
        android:tag="bottom"
    />

    <RelativeLayout 
        android:id="@+id/header_view"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
    >

        <ImageView  
            android:id="@+id/header_image_view"
            android:layout_height="wrap_content" 
            android:layout_width="fill_parent" 
            android:scaleType="fitXY"
            android:src="@drawable/header_update_portrait"
            />
            
        <ImageView
            android:id="@+id/icon_view"
            android:layout_height="wrap_content"
            android:layout_margin="20dip" 
            android:layout_width="wrap_content" 
            android:scaleType="fitXY"
        	/>
        	
        <ImageButton
            android:id="@+id/update_button"
            android:background="@drawable/button_update"
            android:layout_alignParentRight="true"
            android:layout_height="wrap_content"
            android:layout_width="120dip" 
            android:layout_margin="20dip" 
            android:onClick="onClickUpdate"
        	/>
            
        <TextView
            android:id="@+id/name_label"
            android:ellipsize="end" 
            android:layout_below="@id/icon_view"
            android:layout_height="wrap_content" 
            android:layout_marginLeft="20dip" 
            android:layout_marginRight="20dip" 
            android:layout_width="wrap_content"
            android:shadowColor="#000"
            android:shadowDy="1"
            android:singleLine="true"
            android:text="@string/app_name" 
            android:textColor="#fff"
            android:textStyle="bold"
            android:textSize="20sp"
            />

        <TextView
            android:id="@+id/version_label"
            android:ellipsize="end" 
            android:layout_below="@id/name_label"
            android:layout_height="wrap_content" 
            android:layout_marginTop="10dip" 
            android:layout_marginLeft="20dip" 
            android:layout_marginRight="20dip" 
            android:layout_width="wrap_content"
            android:lines="2"
            android:lineSpacingExtra="4sp"
            android:shadowColor="#000"
            android:shadowDy="1"
            android:textColor="#fff"
            android:textStyle="bold"
            android:textSize="16sp"
            />

    </RelativeLayout>
        
</RelativeLayout>
