| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
An Android library written in kotlin to display steps (without any max-min limits) along with the status/description. It also supports some really cool features.
Set step count and current count.
Set different dimensions for circle radius, line length, line gap, stroke width, line width, text size of label (step count).
Set status data using android:entries
Chose a color mode i.e fill, stroke or both using circleColorType
Stroke color (circle), fill color (circle), line color & label text color can be set differently for completed, current & incomplete states.
<params.com.statusView.StatusViewScroller
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:stepCount="5"
app:currentCount="4"
app:drawLabels="true"
android:entries="@array/status"
app:circleColorType="fillStroke"
app:lineGap="5dp"
app:lineWidth="3dp"
app:lineColor="@android:color/black"
app:lineColorIncomplete="#B4B7BA"
app:lineColorCurrent="#91A8D0"
app:circleColor="#CC004B8D"
app:circleColorCurrent="#004B8D"
app:circleColorIncomplete="#BCBCBE"
app:textColorLabels="@android:color/white"
app:textColorLabelsCurrent="@android:color/white"
app:textColorLabelsIncomplete="@android:color/black"
app:circleStrokeWidth="4dp"
app:circleStrokeColorCurrent="#91A8D0"
app:textSizeLabels="15sp"
app:completeDrawable="@drawable/ic_done_black_24dp" /> app:currentStepZoom="0.5"
app:completeDrawable="@drawable/ic_satisfied_black_24dp"
app:currentDrawable="@drawable/ic_dissatisfied_black_24dp"
app:incompleteDrawable="@drawable/ic_very_dissatisfied_black_24dp" app:currentStepZoom="0.3"
app:statusFont="@font/lekton_r"
app:statusTopMargin="15dp"
app:minStatusAdjacentMargin="5dp"
app:alignStatusWithCurrent="true"
app:textColorStatus="#000000"| Back | FazBrowse Home | New Git URL |