Advertisement
GarryLaly

Profil Konten

May 31st, 2016
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.26 KB | None | 0 0
  1. <LinearLayout
  2.    android:layout_height="match_parent"
  3.    android:layout_width="match_parent"
  4.    android:orientation="vertical"
  5.    app:layout_collapseMode="parallax"
  6.    android:layout_marginTop="95dp">
  7.  
  8.     <ImageView
  9.        android:layout_width="80dp"
  10.        android:layout_height="80dp"
  11.        android:id="@+id/photo_profile"
  12.        android:layout_gravity="center_horizontal"
  13.        android:src="@drawable/garry"/>
  14.  
  15.     <TextView
  16.        android:layout_width="wrap_content"
  17.        android:layout_height="wrap_content"
  18.        android:textAppearance="?android:attr/textAppearanceMedium"
  19.        android:text="Garry Priambudi"
  20.        android:id="@+id/fullname"
  21.        android:layout_gravity="center_horizontal"
  22.        android:textColor="@android:color/white"
  23.        android:layout_marginTop="10dp"
  24.        android:gravity="center"/>
  25.  
  26.     <TextView
  27.        android:layout_width="wrap_content"
  28.        android:layout_height="wrap_content"
  29.        android:textAppearance="?android:attr/textAppearanceSmall"
  30.        android:text="http://garrypriambudi.me"
  31.        android:id="@+id/description"
  32.        android:textSize="12sp"
  33.        android:textColor="@android:color/white"
  34.        android:layout_gravity="center_horizontal"/>
  35. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement