Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout 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=".second_main">
  8.  
  9. <androidx.recyclerview.widget.RecyclerView
  10. android:id="@+id/recyclerView"
  11. android:layout_width="0dp"
  12. android:layout_height="0dp"
  13. app:layout_constraintBottom_toTopOf="@+id/button"
  14. app:layout_constraintEnd_toEndOf="parent"
  15. app:layout_constraintHorizontal_bias="0.0"
  16. app:layout_constraintStart_toStartOf="parent"
  17. app:layout_constraintTop_toTopOf="parent"
  18. app:layout_constraintVertical_bias="0.0"
  19. tools:listitem="@layout/wiersz_listy"/>
  20.  
  21. <Button
  22. android:id="@+id/button"
  23. android:layout_width="0dp"
  24. android:layout_height="wrap_content"
  25. android:text="Button"
  26. app:layout_constraintBottom_toBottomOf="parent"
  27. app:layout_constraintEnd_toEndOf="parent"
  28. app:layout_constraintStart_toStartOf="parent" />
  29. </androidx.constraintlayout.widget.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement