<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="80dp"
                android:gravity="fill_horizontal"
                android:background="@color/sf_background_default">

    <ImageView
        android:layout_width="60dp"
        android:layout_height="fill_parent"
        android:id="@+id/sermonPlayImageView"
        android:layout_margin="10dp"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:clickable="false"
        android:focusable="false"
        android:padding="15dp"/>

    <SeekBar
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/seekBar"
        android:layout_centerVertical="true"
        android:layout_toLeftOf="@+id/elapse_textView"
        android:layout_margin="10dp"
        android:layout_toRightOf="@+id/sermonPlayImageView"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="0:00"
        android:id="@+id/elapse_textView"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_margin="10dp"/>

</RelativeLayout>