-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrow_shopping_cart_list.xml
132 lines (120 loc) · 5.65 KB
/
row_shopping_cart_list.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="220dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_marginStart="15dp"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
android:layout_marginEnd="15dp"
android:layout_marginBottom="10dp"
android:layout_marginRight="15dp"
android:background="@drawable/styles_gray_backgrounds"
android:orientation="horizontal">
<ImageView
android:id="@+id/im_productPic"
android:layout_width="150dp"
android:layout_height="150dp"
android:layout_gravity="center"
android:layout_marginStart="15dp"
android:scaleType="fitCenter"
android:background="@drawable/styles_edit_texts"
android:elevation="2dp"
android:padding="2dp"/>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="8dp"
android:layout_weight="1"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<TextView
android:id="@+id/tv_productName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#000"
android:textColorHint="#535353"
android:elevation="5dp"
android:padding="5dp"
android:layout_marginTop="10dp"
android:layout_marginBottom="5dp" />
<TextView
android:id="@+id/tv_productArtist"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#000"
android:textColorHint="#535353"
android:elevation="5dp"
android:padding="5dp"
android:layout_marginBottom="5dp"
android:text="@string/tv_productArtist" />
<TextView
android:id="@+id/tv_productSize"
android:layout_width="match_parent"
android:textColor="#000"
android:textColorHint="#535353"
android:elevation="5dp"
android:padding="5dp"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp" />
<TextView
android:id="@+id/tv_productSeller"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="60dp"
android:textColor="#000"
android:textColorHint="#535353"
android:elevation="5dp"
android:padding="5dp"
android:layout_marginBottom="5dp"
android:text="@string/tv_productSeller" />
<TextView
android:id="@+id/tv_productGuarantee"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="60dp"
android:textColor="#000"
android:textColorHint="#535353"
android:elevation="5dp"
android:padding="5dp"
android:layout_marginBottom="5dp" />
</LinearLayout>
<com.skydoves.elasticviews.ElasticButton
android:id="@+id/btn_eliminationOrder"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_gravity="end"
android:layout_marginEnd="10dp"
android:layout_marginStart="10dp"
android:layout_marginBottom="8dp"
android:drawableTop="@drawable/icon_btn_elimination"
android:gravity="center"
android:background="@drawable/styles_button_backgrounds_gray_rounded"
app:button_duration="200"
android:textColor="#fff"
android:textStyle="bold"
app:button_scale="0.9"
android:elevation="5dp"
android:padding="5dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</LinearLayout>
</LinearLayout>