Skip to content

Instantly share code, notes, and snippets.

@pratamawijaya
Created May 29, 2015 16:57
Show Gist options
  • Save pratamawijaya/4cc39b8ea1a52e72abd8 to your computer and use it in GitHub Desktop.
Save pratamawijaya/4cc39b8ea1a52e72abd8 to your computer and use it in GitHub Desktop.
header layout
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="@color/primaryColor"
android:gravity="bottom"
android:orientation="vertical"
android:padding="16dp">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/imgUser"
android:layout_width="90dp"
android:layout_height="90dp"
android:src="@drawable/raisa" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="Raisa Adriana"
android:textColor="#fff"
android:textSize="22sp" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment