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 =" 100dp" >
7+
8+ <com .google.android.material.card.MaterialCardView
9+ android : id =" @+id/item_search_card_view"
10+ android : layout_width =" match_parent"
11+ android : layout_height =" match_parent"
12+ android : clickable =" true"
13+ app : cardCornerRadius =" 0dp"
14+ app : cardElevation =" 0dp"
15+ app : layout_constraintBottom_toBottomOf =" parent"
16+ app : layout_constraintEnd_toEndOf =" parent"
17+ app : layout_constraintStart_toStartOf =" parent"
18+ app : layout_constraintTop_toTopOf =" parent" >
19+
20+ <androidx .constraintlayout.widget.ConstraintLayout
21+ android : layout_width =" match_parent"
22+ android : layout_height =" match_parent" >
23+
24+ <TextView
25+ android : id =" @+id/item_search_txt_github_id"
26+ android : layout_width =" 0dp"
27+ android : layout_height =" wrap_content"
28+ android : layout_marginStart =" 20dp"
29+ android : layout_marginEnd =" 20dp"
30+ android : textSize =" 20sp"
31+ app : layout_constraintBottom_toBottomOf =" parent"
32+ app : layout_constraintEnd_toStartOf =" @+id/imageView2"
33+ app : layout_constraintStart_toStartOf =" parent"
34+ app : layout_constraintTop_toTopOf =" parent" />
35+
36+ <ImageView
37+ android : id =" @+id/imageView2"
38+ android : layout_width =" wrap_content"
39+ android : layout_height =" wrap_content"
40+ android : layout_marginEnd =" 20dp"
41+ app : layout_constraintBottom_toBottomOf =" parent"
42+ app : layout_constraintEnd_toEndOf =" parent"
43+ app : layout_constraintTop_toTopOf =" parent"
44+ app : srcCompat =" @drawable/ic_close_gray" />
45+ </androidx .constraintlayout.widget.ConstraintLayout>
46+ </com .google.android.material.card.MaterialCardView>
47+ </androidx .constraintlayout.widget.ConstraintLayout>
0 commit comments