We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 619062c commit 99be59cCopy full SHA for 99be59c
library/src/main/java/com/developer/spoti/vspoti/VSpotView2.java
@@ -168,6 +168,19 @@ private void drawArrowToTarget(Canvas canvas) {
168
canvas.drawPath(arrowPath, arrowPaint);
169
}
170
171
+ private void showMessageWithAnimation() {
172
+ mMessageView.setAlpha(0f);
173
+ mMessageView.setScaleX(0.8f);
174
+ mMessageView.setScaleY(0.8f);
175
+
176
+ mMessageView.animate()
177
+ .alpha(1f)
178
+ .scaleX(1f)
179
+ .scaleY(1f)
180
+ .setDuration(300)
181
+ .setInterpolator(new android.view.animation.DecelerateInterpolator())
182
+ .start();
183
+ }
184
185
public void nextTarget() {
186
if (currentTargetIndex < targetViews.size() - 1) {
0 commit comments