|
@@ -0,0 +1,32 @@
|
|
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
+<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="56dp"
|
|
|
|
|
+ android:background="?android:attr/selectableItemBackground"
|
|
|
|
|
+ android:clickable="true"
|
|
|
|
|
+ android:padding="16dp"
|
|
|
|
|
+ android:focusable="true">
|
|
|
|
|
+
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ android:id="@+id/imageView"
|
|
|
|
|
+ android:layout_width="24dp"
|
|
|
|
|
+ android:layout_height="24dp"
|
|
|
|
|
+ android:tint="#000000"
|
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
+ app:srcCompat="@drawable/ic_baseline_insert_drive_file_32" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/textView"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginStart="32dp"
|
|
|
|
|
+ android:text="TextView"
|
|
|
|
|
+ android:textColor="#DE000000"
|
|
|
|
|
+ android:textSize="18sp"
|
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/imageView"
|
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
+</androidx.constraintlayout.widget.ConstraintLayout>
|