mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
122 lines
3.8 KiB
Java
122 lines
3.8 KiB
Java
package org.thoughtcrime.securesms.components;
|
|
|
|
import android.content.Context;
|
|
import android.support.annotation.NonNull;
|
|
import android.support.annotation.Nullable;
|
|
import android.util.AttributeSet;
|
|
|
|
import network.loki.messenger.R;
|
|
import org.thoughtcrime.securesms.util.Util;
|
|
|
|
import java.lang.ref.WeakReference;
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
public class ExpirationTimerView extends android.support.v7.widget.AppCompatImageView {
|
|
|
|
private long startedAt;
|
|
private long expiresIn;
|
|
|
|
private boolean visible = false;
|
|
private boolean stopped = true;
|
|
|
|
private final int[] frames = new int[]{ R.drawable.timer00,
|
|
R.drawable.timer05,
|
|
R.drawable.timer10,
|
|
R.drawable.timer15,
|
|
R.drawable.timer20,
|
|
R.drawable.timer25,
|
|
R.drawable.timer30,
|
|
R.drawable.timer35,
|
|
R.drawable.timer40,
|
|
R.drawable.timer45,
|
|
R.drawable.timer50,
|
|
R.drawable.timer55,
|
|
R.drawable.timer60 };
|
|
|
|
public ExpirationTimerView(Context context) {
|
|
super(context);
|
|
}
|
|
|
|
public ExpirationTimerView(Context context, @Nullable AttributeSet attrs) {
|
|
super(context, attrs);
|
|
}
|
|
|
|
public ExpirationTimerView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
|
|
super(context, attrs, defStyleAttr);
|
|
}
|
|
|
|
public void setExpirationTime(long startedAt, long expiresIn) {
|
|
this.startedAt = startedAt;
|
|
this.expiresIn = expiresIn;
|
|
setPercentComplete(calculateProgress(this.startedAt, this.expiresIn));
|
|
}
|
|
|
|
public void setPercentComplete(float percentage) {
|
|
float percentFull = 1 - percentage;
|
|
int frame = (int) Math.ceil(percentFull * (frames.length - 1));
|
|
|
|
frame = Math.max(0, Math.min(frame, frames.length - 1));
|
|
setImageResource(frames[frame]);
|
|
}
|
|
|
|
public void startAnimation() {
|
|
synchronized (this) {
|
|
visible = true;
|
|
if (!stopped) return;
|
|
else stopped = false;
|
|
}
|
|
|
|
Util.runOnMainDelayed(new AnimationUpdateRunnable(this), calculateAnimationDelay(this.startedAt, this.expiresIn));
|
|
}
|
|
|
|
public void stopAnimation() {
|
|
synchronized (this) {
|
|
visible = false;
|
|
}
|
|
}
|
|
|
|
private float calculateProgress(long startedAt, long expiresIn) {
|
|
long progressed = System.currentTimeMillis() - startedAt;
|
|
float percentComplete = (float)progressed / (float)expiresIn;
|
|
|
|
return Math.max(0, Math.min(percentComplete, 1));
|
|
}
|
|
|
|
private long calculateAnimationDelay(long startedAt, long expiresIn) {
|
|
long progressed = System.currentTimeMillis() - startedAt;
|
|
long remaining = expiresIn - progressed;
|
|
|
|
if (remaining < TimeUnit.SECONDS.toMillis(30)) {
|
|
return 50;
|
|
} else {
|
|
return 1000;
|
|
}
|
|
}
|
|
|
|
private static class AnimationUpdateRunnable implements Runnable {
|
|
|
|
private final WeakReference<ExpirationTimerView> expirationTimerViewReference;
|
|
|
|
private AnimationUpdateRunnable(@NonNull ExpirationTimerView expirationTimerView) {
|
|
this.expirationTimerViewReference = new WeakReference<>(expirationTimerView);
|
|
}
|
|
|
|
@Override
|
|
public void run() {
|
|
ExpirationTimerView timerView = expirationTimerViewReference.get();
|
|
if (timerView == null) return;
|
|
|
|
timerView.setExpirationTime(timerView.startedAt, timerView.expiresIn);
|
|
|
|
synchronized (timerView) {
|
|
if (!timerView.visible) {
|
|
timerView.stopped = true;
|
|
return;
|
|
}
|
|
}
|
|
|
|
Util.runOnMainDelayed(this, timerView.calculateAnimationDelay(timerView.startedAt, timerView.expiresIn));
|
|
}
|
|
}
|
|
|
|
}
|