Skip to content

Commit 4445c30

Browse files
committed
Added comments
1 parent 830e9c1 commit 4445c30

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

app/src/main/res/drawable/ripple.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<item android:id="@android:id/mask">
55
<shape android:shape="rectangle">
66
<solid android:color="?android:colorAccent" />
7-
<corners android:radius="50dp" />
7+
<corners android:radius="24dp" />
88
</shape>
99
</item>
1010
</ripple>

support/src/main/java/com/github/nikartm/support/AnimatedStripedDrawable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
import android.support.annotation.NonNull;
1717
import android.support.annotation.Nullable;
1818

19-
2019
/**
20+
* Animated striped drawable
2121
* @author Ivan V on 30.03.2018.
2222
* @version 1.0
2323
*/

support/src/main/java/com/github/nikartm/support/Util.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ private static float valueAlpha(float value) {
2929
return MAX_ALPHA * (value * 100f) / 100f;
3030
}
3131

32+
/**
33+
* Animation for the striped process button
34+
*/
3235
static class Animation {
3336

3437
public static void animateView(View view, boolean start, long duration) {

0 commit comments

Comments
 (0)