Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="wrap_content">
  7.  
  8. <CheckBox
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:id="@+id/list_item_crime_solved_check_box"
  12. android:layout_alignParentRight="true"
  13. android:padding="4dp"/>
  14.  
  15. <TextView
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content"
  18. android:id="@+id/list_item_crime_title_text_view"
  19. android:layout_toLeftOf="@id/list_item_crime_solved_check_box"
  20. android:textStyle="bold"
  21. android:padding="4dp"
  22. tools:text="Crime Title"/>
  23.  
  24. <TextView
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content"
  27. android:id="@+id/list_item_crime_date_text_view"
  28. android:layout_toLeftOf="@id/list_item_crime_solved_check_box"
  29. android:layout_below="@id/list_item_crime_title_text_view"
  30. android:padding="4dp"
  31. tools:text="Crime Date"/>
  32.  
  33. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement