-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrow_list_of_arts_activity.xml
104 lines (93 loc) · 4.13 KB
/
row_list_of_arts_activity.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
<?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"
android:layout_width="match_parent"
android:layout_height="200dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="180dp"
android:layout_marginStart="15dp"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
android:layout_marginEnd="15dp"
android:layout_marginRight="15dp"
android:layout_marginBottom="10dp"
android:background="@drawable/styles_light_gray_backgrounds"
android:elevation="5dp"
android:orientation="horizontal"
android:padding="5dp">
<com.skydoves.elasticviews.ElasticImageView
android:id="@+id/im_productPic_ArtsList"
android:layout_width="150dp"
android:layout_height="150dp"
android:layout_gravity="center"
android:layout_marginStart="15dp"
android:background="@drawable/styles_edit_texts"
android:elevation="2dp"
android:padding="2dp"
android:scaleType="fitCenter" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="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_ArtsList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:elevation="5dp"
android:layoutDirection="ltr"
android:padding="5dp"
android:textAlignment="viewStart"
android:textColor="#000"
android:textColorHint="#535353" />
<TextView
android:id="@+id/tv_productArtist_ArtsList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:elevation="5dp"
android:layoutDirection="ltr"
android:padding="5dp"
android:text="@string/tv_productArtist"
android:textAlignment="viewStart"
android:textColor="#000"
android:textColorHint="#535353" />
<TextView
android:id="@+id/tv_productSize_ArtsList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:elevation="5dp"
android:layoutDirection="ltr"
android:padding="5dp"
android:textAlignment="viewStart"
android:textColor="#000"
android:textColorHint="#535353" />
<TextView
android:id="@+id/tv_productSeller_ArtsList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:elevation="5dp"
android:layoutDirection="ltr"
android:padding="5dp"
android:text="@string/tv_productSeller"
android:textAlignment="viewStart"
android:textColor="#000"
android:textColorHint="#535353" />
</LinearLayout>
</LinearLayout>
</LinearLayout>