-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathactivity_main.xml
More file actions
29 lines (27 loc) · 1.17 KB
/
activity_main.xml
File metadata and controls
29 lines (27 loc) · 1.17 KB
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
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:ignore="ResAuto">
<params.com.stepprogressview.StepProgressView
android:id="@+id/pbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:progressBarWidth="300dp"
app:currentProgress="0"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:markers="6,18,30,42,54"
app:markersLabels="test1,test2,test3,test4,test5"
app:markerColor="@color/colorPrimaryDark"
app:markerShape="oval"
app:markerRadius="6dp"
app:progressColor="@color/colorAccent"
app:textMargin="10dp"
app:textSize="14sp"
app:totalProgress="60" />
</android.support.constraint.ConstraintLayout>