pkaislan

Layout XML

Oct 9th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.53 KB | None | 0 0
  1. //Este é o xml da activity, tem um RecyclerView dentro do ScrollView, as
  2. // outras views foram abreviadas para facilitar a compreensão.
  3.  
  4.  
  5.  
  6.  
  7.  
  8. <?xml version="1.0" encoding="utf-8"?>
  9. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  10.     xmlns:app="http://schemas.android.com/apk/res-auto"
  11.     xmlns:tools="http://schemas.android.com/tools"
  12.     android:id="@+id/linearLayout6"
  13.     android:layout_width="match_parent"
  14.     android:layout_height="match_parent"
  15.     tools:context=".Terminal">
  16.  
  17.  
  18.     <ScrollView
  19.         android:id="@+id/scrollterminal"
  20.         android:layout_width="match_parent"
  21.         android:layout_height="568dp"
  22.         app:layout_constraintBottom_toTopOf="@+id/linearLayout7"
  23.         app:layout_constraintEnd_toEndOf="parent"
  24.         app:layout_constraintHorizontal_bias="0.466"
  25.         app:layout_constraintStart_toStartOf="parent"
  26.         app:layout_constraintTop_toBottomOf="@+id/linearLayout8"
  27.         app:layout_constraintVertical_bias="0.0">
  28.  
  29.  
  30.         <androidx.recyclerview.widget.RecyclerView
  31.             android:id="@+id/terminal_itens"
  32.             android:layout_width="match_parent"
  33.             android:layout_height="wrap_content"
  34.             android:layout_marginLeft="8dp"
  35.             android:layout_marginTop="8dp"
  36.             android:layout_marginRight="8dp"
  37.             android:layout_marginBottom="8dp">
  38.  
  39.  
  40.         </androidx.recyclerview.widget.RecyclerView>
  41.  
  42.     </ScrollView>
  43.  
  44. </androidx.constraintlayout.widget.ConstraintLayout>
  45.  
Add Comment
Please, Sign In to add comment