I recently tried to implement the soundcloud user profile , but i failed multiple times , tried implementing with new collapsing does toolbar , but now where close the effect these has -

Am hoping a point in the right direction , any direction would be appreciation
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:fitsSystemWindows="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="false"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<include
android:layout_width="match_parent"
android:layout_height="200dp"
layout="@layout/profile_header"/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
style="@style/App.Toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.CollapsingToolbarLayout>
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
app:tabIndicatorColor="@android:color/darker_gray"
app:tabTextColor="@android:color/darker_gray"
android:background="@android:color/white"
app:tabSelectedTextColor="@android:color/black"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.design.widget.AppBarLayout>
and for the profile header
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="schemas.android.com/apk/res/android"
xmlns:funky="schemas.android.com/apk/res-auto"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fff">
<android.support.v7.widget.CardView
android:id="@+id/user_prof_card"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
funky:cardCornerRadius="50dp">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/user_prof_avatar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/intruder_shanky" />
</android.support.v7.widget.CardView>
<TextView
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
android:id="@+id/user_prof_name"
android:layout_width="match_parent"
android:gravity="center"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/user_prof_card"
android:layout_marginLeft="28dp"
android:layout_toRightOf="@+id/user_prof_card"
android:text="Intruder Shanky"
android:textColor="#000"
/>
<RelativeLayout
android:layout_toRightOf="@+id/user_prof_card"
android:layout_below="@+id/user_stat"
android:layout_width="match_parent"
android:gravity="center"
android:layout_height="wrap_content">
<TextView
android:drawableLeft="@drawable/round_follow_icon"
android:drawablePadding="4dp"
android:textAppearance="@style/TextAppearance.AppCompat.Small"
android:id="@+id/user_prof_follow_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="28dp"
android:layout_marginTop="10dp"
android:background="@drawable/border"
android:paddingLeft="8dp"
android:gravity="center"
android:paddingRight="8dp"
android:text="Following"
android:textColor="@color/green" />
</RelativeLayout>
<LinearLayout
android:layout_below="@id/user_prof_name"
android:layout_marginLeft="28dp"
android:layout_marginTop="4dp"
android:layout_toRightOf="@+id/user_prof_card"
android:id="@+id/user_stat"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<LinearLayout
android:gravity="center_vertical"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:id="@+id/user_prof_follower"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="2"
android:textAppearance="@style/TextAppearance.AppCompat.Small"
android:textColor="#880E4F"
android:textStyle="bold" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textSize="11sp"
android:maxLines="1"
android:text="Follower"
android:textColor="#cc424242" />
</LinearLayout>
<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp"
android:background="#66424242" />
<LinearLayout
android:gravity="center_vertical"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:id="@+id/user_prof_following"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="1782"
android:textAppearance="@style/TextAppearance.AppCompat.Small"
android:textColor="#880E4F"
android:textStyle="bold" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textSize="11sp"
android:maxLines="1"
android:text="Following"
android:textColor="#cc424242" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
<View
android:layout_alignParentBottom="true"
android:background="@color/grey_200"
android:layout_width="match_parent"
android:layout_height="6dp"/>
</RelativeLayout>
No responses yet.