-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathfeature4.xml
36 lines (34 loc) · 1.27 KB
/
feature4.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
<com.mackhartley.roundedprogressbar.RoundedProgressBar
android:id="@+id/first_bar"
android:layout_width="match_parent"
android:layout_height="32dp"
app:rpbBackgroundColor="#F28969"
app:rpbBackgroundTextColor="#070600"
app:rpbCornerRadius="6dp"
app:rpbProgressColor="#070600"
app:rpbProgressTextColor="#F28969"
app:rpbTextPadding="12dp" />
<com.mackhartley.roundedprogressbar.RoundedProgressBar
android:id="@+id/second_bar"
android:layout_width="match_parent"
android:layout_height="32dp"
app:rpbBackgroundColor="#F28969"
app:rpbBackgroundTextColor="#070600"
app:rpbCornerRadiusTopRight="16dp"
app:rpbProgressColor="#070600"
app:rpbProgressTextColor="#F28969"
app:rpbTextPadding="12dp" />
<com.mackhartley.roundedprogressbar.RoundedProgressBar
android:id="@+id/third_bar"
android:layout_width="match_parent"
android:layout_height="32dp"
app:rpbBackgroundColor="#F28969"
app:rpbBackgroundTextColor="#070600"
app:rpbCornerRadiusBottomLeft="6dp"
app:rpbCornerRadiusBottomRight="20dp"
app:rpbCornerRadiusTopLeft="20dp"
app:rpbCornerRadiusTopRight="6dp"
app:rpbIsRadiusRestricted="false"
app:rpbProgressColor="#070600"
app:rpbProgressTextColor="#F28969"
app:rpbTextPadding="12dp" />