Skip to content

Commit 9e84a4b

Browse files
committed
bug fix.
1 parent 13e934d commit 9e84a4b

File tree

4 files changed

+50
-12
lines changed

4 files changed

+50
-12
lines changed

app/src/main/res/layout/activity_main.xml

+38-3
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,48 @@
77
tools:context=".MainActivity">
88

99
<com.sn.lib.NestedProgress
10-
android:id="@+id/emre"
10+
android:id="@+id/pb1"
1111
android:layout_width="wrap_content"
1212
android:layout_height="wrap_content"
13-
app:innerAnimInterpolator="overshoot"
13+
android:layout_marginStart="60dp"
14+
android:layout_marginTop="60dp"
15+
app:innerAnimInterpolator="linear"
1416
app:layout_constraintStart_toStartOf="parent"
1517
app:layout_constraintTop_toTopOf="parent"
16-
app:outerAnimInterpolator="overshoot" />
18+
app:outerAnimInterpolator="linear"
19+
app:outerLoaderAnimDuration="1500" />
20+
21+
<com.sn.lib.NestedProgress
22+
android:id="@+id/pb2"
23+
android:layout_width="wrap_content"
24+
android:layout_height="wrap_content"
25+
app:innerAnimInterpolator="linear"
26+
app:innerLoaderAnimDuration="500"
27+
app:innerLoaderColor="@color/purple_700"
28+
app:innerLoaderLength="180"
29+
app:layout_constraintStart_toEndOf="@+id/pb1"
30+
app:layout_constraintTop_toTopOf="@id/pb1"
31+
app:outerAnimInterpolator="linear"
32+
app:outerLoaderAnimDuration="2000"
33+
app:outerLoaderColor="@color/blue"
34+
app:outerLoaderLength="300"
35+
app:outerLoaderStrokeWidth="20" />
36+
37+
<com.sn.lib.NestedProgress
38+
android:id="@+id/pb3"
39+
android:layout_width="wrap_content"
40+
android:layout_height="wrap_content"
41+
app:innerAnimInterpolator="overshoot"
42+
app:innerLoaderAnimDuration="2000"
43+
app:innerLoaderColor="@color/red"
44+
app:innerLoaderLength="320"
45+
app:layout_constraintStart_toEndOf="@+id/pb2"
46+
app:layout_constraintTop_toTopOf="@id/pb2"
47+
app:outerAnimInterpolator="anticipateOvershoot"
48+
app:outerLoaderAnimDuration="1000"
49+
app:outerLoaderColor="@color/red_soft"
50+
app:outerLoaderLength="200"
51+
app:outerLoaderStrokeWidth="25" />
1752

1853

1954
</androidx.constraintlayout.widget.ConstraintLayout>

app/src/main/res/values/colors.xml

+3
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,7 @@
77
<color name="teal_700">#FF018786</color>
88
<color name="black">#FF000000</color>
99
<color name="white">#FFFFFFFF</color>
10+
<color name="blue">#FF1167B1</color>
11+
<color name="red">#FFf28B88</color>
12+
<color name="red_soft">#FFFACCCC</color>
1013
</resources>

lib/src/main/java/com/sn/lib/NestedProgress.kt

+8-8
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@ class NestedProgress @JvmOverloads constructor(
7575

7676
@ColorInt
7777
@Suppress("UNUSED_VARIABLE")
78-
var innerLoaderColor: Int = COLOR_BLUE
78+
var innerLoaderColor: Int = COLOR_LIGHT_BLUE
7979

8080
@ColorInt
8181
@Suppress("UNUSED_VARIABLE")
82-
var outerLoaderColor: Int = COLOR_LIGHT_BLUE
82+
var outerLoaderColor: Int = COLOR_BLUE
8383

8484
/** The maximum angle at which you can see a movement in the animation is 359
8585
* -innerLoaderLength
@@ -173,14 +173,14 @@ class NestedProgress @JvmOverloads constructor(
173173
val centerW: Float = width / 2f
174174
val centerH: Float = height / 2f
175175

176-
innerLoadingRect.set(
176+
outerLoadingRect.set(
177177
centerW - (INNER_LOADER_POS * sizeFactor),
178178
centerH - (INNER_LOADER_POS * sizeFactor),
179179
centerW + (INNER_LOADER_POS * sizeFactor),
180180
centerH + (INNER_LOADER_POS * sizeFactor)
181181
)
182182

183-
outerLoadingRect.set(
183+
innerLoadingRect.set(
184184
centerW - (OUTER_LOADER_POS * sizeFactor),
185185
centerH - (OUTER_LOADER_POS * sizeFactor),
186186
centerW + (OUTER_LOADER_POS * sizeFactor),
@@ -191,7 +191,7 @@ class NestedProgress @JvmOverloads constructor(
191191
canvas.drawArc(
192192
outerLoadingRect,
193193
outerLoaderAnimValue.toFloat(),
194-
innerLoaderLength,
194+
outerLoaderLength,
195195
false,
196196
paint
197197
)
@@ -200,7 +200,7 @@ class NestedProgress @JvmOverloads constructor(
200200
canvas.drawArc(
201201
innerLoadingRect,
202202
innerLoaderAnimValue.toFloat(),
203-
outerLoaderLength,
203+
innerLoaderLength,
204204
false,
205205
paint
206206
)
@@ -209,8 +209,8 @@ class NestedProgress @JvmOverloads constructor(
209209

210210
override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
211211
super.onMeasure(widthMeasureSpec, heightMeasureSpec)
212-
val desiredWidth = (300 * sizeFactor).roundToInt()
213-
val desiredHeight = (300 * sizeFactor).roundToInt()
212+
val desiredWidth = (250 * sizeFactor).roundToInt()
213+
val desiredHeight = (250 * sizeFactor).roundToInt()
214214

215215
val widthMode = MeasureSpec.getMode(widthMeasureSpec)
216216
val widthSize = MeasureSpec.getSize(widthMeasureSpec)

lib/src/main/res/values/attrs.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<attr name="outerLoaderAnimDuration" format="integer" />
66
<attr name="outerLoaderLength" format="integer" />
77
<attr name="innerLoaderLength" format="float" />
8-
<attr name="outerLoaderColor" format="float" />
8+
<attr name="outerLoaderColor" format="color" />
99
<attr name="innerLoaderColor" format="color" />
1010
<attr name="innerLoaderStrokeWidth" format="float" />
1111
<attr name="outerLoaderStrokeWidth" format="float" />

0 commit comments

Comments
 (0)