Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:orientation="vertical"
  6. >
  7. <TextView
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:text="@string/crime_title_label"
  11. style="?android:listSeparatorTextViewStyle"
  12. />
  13. <EditText android:id="@+id/crime_title"
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:layout_marginLeft="16dp"
  17. android:layout_marginRight="16dp"
  18. android:hint="@string/crime_title_hint"
  19. />
  20. <TextView
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:text="@string/crime_details_label"
  24. style="?android:listSeparatorTextViewStyle"
  25. />
  26. <Button android:id="@+id/crime_date"
  27. android:layout_width="match_parent"
  28. android:layout_height="wrap_content"
  29. android:layout_marginLeft="16dp"
  30. android:layout_marginRight="16dp"
  31. />
  32. <CheckBox android:id="@+id/crime_solved"
  33. android:layout_width="match_parent"
  34. android:layout_height="wrap_content"
  35. android:layout_marginLeft="16dp"
  36. android:layout_marginRight="16dp"
  37. android:text="@string/crime_solved_label"
  38. />
  39. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement