Advertisement
Guest User

Untitled

a guest
May 16th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout 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=".View.AddPacketFragment">
  8.  
  9. <android.support.constraint.ConstraintLayout
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent">
  12.  
  13. <Button
  14. android:id="@+id/btnUploadPacket"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:layout_marginEnd="16dp"
  18. android:layout_marginBottom="8dp"
  19. android:text="Upload"
  20. app:layout_constraintBottom_toBottomOf="parent"
  21. app:layout_constraintEnd_toEndOf="parent" />
  22.  
  23. <Button
  24. android:id="@+id/btnAddPacketPdf"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:layout_marginEnd="8dp"
  28. android:layout_marginBottom="8dp"
  29. android:text="Add"
  30. app:layout_constraintBottom_toBottomOf="@+id/btnUploadPacket"
  31. app:layout_constraintEnd_toStartOf="@+id/btnUploadPacket"
  32. app:layout_constraintTop_toTopOf="@+id/btnUploadPacket"
  33. app:layout_constraintVertical_bias="0.0" />
  34.  
  35. <android.support.v7.widget.RecyclerView
  36. android:id="@+id/recyclerView"
  37. android:layout_width="match_parent"
  38. android:layout_height="wrap_content"
  39. app:layout_constraintEnd_toEndOf="parent"
  40. app:layout_constraintHorizontal_bias="1.0"
  41. app:layout_constraintStart_toStartOf="parent"
  42. app:layout_constraintTop_toTopOf="parent">
  43.  
  44. </android.support.v7.widget.RecyclerView>
  45.  
  46.  
  47. </android.support.constraint.ConstraintLayout>
  48.  
  49. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement