Advertisement
mmayoub

item_in_list_layout.xml

Mar 3rd, 2023
934
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.08 KB | Software | 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="wrap_content"
  7.    android:layout_margin="6dp">
  8.  
  9.     <TextView
  10.        android:id="@+id/tvName"
  11.        android:layout_width="0dp"
  12.        android:layout_height="wrap_content"
  13.        android:text="TextView"
  14.        android:textSize="20sp"
  15.        app:layout_constraintEnd_toStartOf="@+id/tvQuentity"
  16.        app:layout_constraintStart_toStartOf="parent"
  17.        app:layout_constraintTop_toTopOf="parent" />
  18.  
  19.     <TextView
  20.        android:id="@+id/tvQuentity"
  21.        android:layout_width="0dp"
  22.        android:layout_height="wrap_content"
  23.        android:text="TextView"
  24.        android:textSize="20sp"
  25.        app:layout_constraintEnd_toEndOf="parent"
  26.        app:layout_constraintTop_toTopOf="parent" />
  27. </androidx.constraintlayout.widget.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement