2013-01-23 20:12:02 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="?attr/borderless_button" >
|
|
|
|
|
2013-01-25 23:26:47 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imgvHeaderArrow"
|
|
|
|
android:layout_width="@dimen/thumbnail_length"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:padding="12dp"
|
|
|
|
android:scaleType="fitEnd"
|
|
|
|
android:src="?attr/navigation_expand" />
|
|
|
|
|
2013-01-23 20:12:02 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvHeaderTitle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginBottom="24dp"
|
2013-01-25 23:26:47 +01:00
|
|
|
android:layout_marginLeft="8dp"
|
2013-01-23 20:12:02 +01:00
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
android:layout_marginTop="24dp"
|
2013-01-25 23:26:47 +01:00
|
|
|
android:layout_toRightOf="@id/imgvHeaderArrow"
|
2013-01-23 20:12:02 +01:00
|
|
|
android:textColor="@color/bright_blue"
|
|
|
|
android:textSize="@dimen/text_size_large"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|