Advertisement
caparol6991

Untitled

Apr 16th, 2019
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".addDebtor">
  8.  
  9.  
  10. <LinearLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:orientation="vertical">
  14.  
  15. <TextView
  16. android:id="@+id/textLocalizationHistory"
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. android:text="Historia tras pojazdów" />
  20.  
  21. <EditText
  22. android:id="@+id/editDate"
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:ems="10"
  26. android:inputType="date" />
  27.  
  28. <ListView
  29. android:id="@+id/listViewLocalizationHistory"
  30. android:layout_width="match_parent"
  31. android:layout_height="match_parent" />
  32. </LinearLayout>
  33.  
  34.  
  35. </android.support.design.widget.CoordinatorLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement