Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:padding="8dp" >
  6.  
  7. <ImageView
  8. android:id="@+id/imageView1"
  9. android:layout_width="140dp"
  10. android:layout_height="140dp"
  11. android:layout_alignParentRight="true"
  12. android:scaleType="fitXY" />
  13.  
  14. <TextView
  15. android:id="@+id/event_text"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_alignParentLeft="true"
  19. android:layout_alignTop="@+id/imageView1"
  20. android:layout_toLeftOf="@+id/imageView1"
  21. android:textColor="@color/background_list"
  22. android:textStyle="bold"
  23. />
  24.  
  25. <TextView
  26. android:id="@+id/category_test"
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:layout_above="@+id/date_test"
  30. android:textColor="@color/background_list"
  31. android:textStyle="bold" />
  32.  
  33. <TextView
  34. android:id="@+id/date_test"
  35. android:layout_width="wrap_content"
  36. android:layout_height="wrap_content"
  37. android:layout_alignParentLeft="true"
  38. android:layout_alignParentBottom="true"
  39. android:textColor="@color/background_list"
  40. android:textStyle="bold" />
  41.  
  42. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement