<TextView
android:id="@+id/user_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/user_avatar"
android:layout_marginLeft="13dp"
android:singleLine="true"
android:ellipsize="end"
android:shadowColor="@android:color/black"
android:shadowDx="3.0"
android:shadowDy="3.0"
android:shadowRadius="5.0"
android:text="@string/user_name"
android:textSize="20sp"
android:textColor="@android:color/white" />
<FrameLayout
android:id="@+id/user_divider_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/user_avatar"
android:layout_marginTop="4dp"
android:layout_marginLeft="21dp"
android:layout_marginRight="21dp">
<ImageView
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_marginTop="5dp"
android:contentDescription="@null"
android:background="#DFDFDF" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="29dp"
android:contentDescription="@null"
android:src="@drawable/arrow_up" />
</FrameLayout>