|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | + xmlns:tools="http://schemas.android.com/tools" |
| 4 | + android:layout_width="match_parent" |
| 5 | + android:layout_height="match_parent" |
| 6 | + android:gravity="center_horizontal" |
| 7 | + android:orientation="vertical" |
| 8 | + xmlns:app="http://schemas.android.com/apk/res-auto" |
| 9 | + tools:context="com.hss01248.progressbarcircle.MainActivity"> |
| 10 | + <com.hss01248.roundprogressbar.SmoothRoundProgressBar |
| 11 | + android:layout_marginTop="10dp" |
| 12 | + android:layout_width="40dp" |
| 13 | + android:layout_height="40dp" /> |
| 14 | + <com.hss01248.roundprogressbar.SmoothRoundProgressBar |
| 15 | + android:layout_marginTop="10dp" |
| 16 | + app:cpb_endColor = "@android:color/holo_blue_dark" |
| 17 | + android:layout_width="40dp" |
| 18 | + android:layout_height="40dp" /> |
| 19 | + <com.hss01248.roundprogressbar.SmoothRoundProgressBar |
| 20 | + android:layout_marginTop="10dp" |
| 21 | + app:cpb_startColor = "@android:color/holo_green_light" |
| 22 | + app:cpb_endColor = "@android:color/holo_blue_dark" |
| 23 | + android:layout_width="80dp" |
| 24 | + android:layout_height="80dp" /> |
| 25 | + |
| 26 | + <com.hss01248.roundprogressbar.SmoothRoundProgressBar |
| 27 | + android:layout_marginTop="10dp" |
| 28 | + app:cpb_startColor = "@android:color/holo_green_light" |
| 29 | + app:cpb_endColor = "@android:color/holo_blue_dark" |
| 30 | + app:cpb_duration = "3000" |
| 31 | + android:layout_width="80dp" |
| 32 | + android:layout_height="80dp" /> |
| 33 | + |
| 34 | + <com.hss01248.roundprogressbar.SmoothRoundProgressBar |
| 35 | + android:layout_marginTop="10dp" |
| 36 | + app:cpb_startColor = "@android:color/holo_green_light" |
| 37 | + app:cpb_endColor = "@android:color/holo_blue_dark" |
| 38 | + app:cpb_duration = "3000" |
| 39 | + app:cpb_strokeWidth = "15dp" |
| 40 | + android:layout_width="80dp" |
| 41 | + android:layout_height="80dp" /> |
| 42 | + |
| 43 | +</LinearLayout> |
0 commit comments