-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrow_artist_list_main_activity.xml
76 lines (67 loc) · 3.14 KB
/
row_artist_list_main_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
<?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="235dp"
android:layout_height="110dp"
android:orientation="horizontal"
android:gravity="center">
<LinearLayout
android:layout_width="230dp"
android:layout_height="100dp"
android:background="@drawable/styles_gray_backgrounds">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/im_ArtistProfilePic"
android:layout_width="85dp"
android:layout_height="85dp"
android:layout_marginStart="3dp"
android:background="@drawable/styles_background_light_gray_rounded"
android:elevation="2dp"
android:padding="5dp" />
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/tv_ArtistName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:hint="@string/tv_ArtistName_hint_main_activity"
android:textColor="#000"
android:textColorHint="#535353"
android:elevation="5dp"
android:padding="5dp"
android:textSize="12sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_ArtistMethod"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:hint="@string/tv_ArtistMethod_hint_main_activity"
android:textColor="#000"
android:textColorHint="#535353"
android:elevation="5dp"
android:padding="5dp"
android:textSize="12sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tv_ArtistName" />
<RatingBar
android:id="@+id/artistRating"
style="@style/Widget.AppCompat.RatingBar.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:isIndicator="true"
android:numStars="5"
android:progressBackgroundTint="#fff"
android:progressTint="#fff"
android:rating="2.5"
android:stepSize=".5"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</LinearLayout>
</LinearLayout>