<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
             xmlns:tools="http://schemas.android.com/tools"
             android:layout_width="match_parent"
             android:layout_height="match_parent"
             tools:context="com.sharefaith.thesharefaithapp.ui.SFPostDetailFragment"
             android:id="@+id/postDetailRelativeLayout">

    <!-- TODO: Update blank fragment layout -->

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="57dp"
        android:id="@+id/postTitleTextView"
        android:layout_alignParentTop="true"
        android:layout_marginTop="0dp"
        android:gravity="center_vertical|center_horizontal"
        android:paddingLeft="20dp"
        android:paddingRight="20dp"
        android:maxLines="2"
        android:ellipsize="end"
        android:textColor="#ffffffff"
        android:background="#ff323333"
        android:layout_centerInParent="true"/>

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/postBackgroundTextView"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_marginTop="3dp"
        android:layout_marginBottom="-35dp"
        android:layout_below="@+id/postTitleTextView"
        android:layout_alignBottom="@+id/postImageView"
        android:background="#ff323333"/>

    <ImageView
        android:layout_width="180dp"
        android:layout_height="135dp"
        android:id="@+id/postImageView"
        android:layout_below="@+id/postTitleTextView"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="30dp"
        />

    <TextView
        android:layout_width="200dp"
        android:layout_height="155dp"
        android:id="@+id/postBorderView"
        android:layout_alignTop="@+id/postImageView"
        android:layout_alignParentLeft="false"
        android:layout_alignParentStart="false"
        android:layout_marginTop="-10dp"
        android:layout_marginLeft="-10dp"
        android:layout_alignLeft="@+id/postImageView"
        android:background="@drawable/borderbox"
        android:alpha="0.1"/>

    <com.sharefaith.thesharefaithapp.ui.SFWebView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:id="@+id/postWebView"
        android:layout_below="@+id/postImageView"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="35dp"
        android:layout_marginBottom="10dp"
        android:background="#ff272727"/>

    <TextView
        android:layout_width="180dp"
        android:layout_height="135dp"
        android:id="@+id/showDateTextView"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="0dp"
        android:visibility="invisible"
        android:gravity="center_vertical|center_horizontal"
        android:background="@drawable/borderbox"
        android:textColor="#ffffffff"
        android:layout_alignTop="@+id/postImageView"/>

</RelativeLayout>
