|
|
|
@ -29,8 +29,6 @@ import android.support.annotation.NonNull;
|
|
|
|
|
import android.support.annotation.Nullable;
|
|
|
|
|
import android.util.Log;
|
|
|
|
|
import android.view.View;
|
|
|
|
|
import android.view.animation.AlphaAnimation;
|
|
|
|
|
import android.view.animation.Animation;
|
|
|
|
|
import android.widget.Toast;
|
|
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.R;
|
|
|
|
@ -42,9 +40,11 @@ import org.thoughtcrime.securesms.providers.PersistentBlobProvider;
|
|
|
|
|
import org.thoughtcrime.securesms.recipients.Recipients;
|
|
|
|
|
import org.thoughtcrime.securesms.util.MediaUtil;
|
|
|
|
|
import org.thoughtcrime.securesms.util.ViewUtil;
|
|
|
|
|
import org.thoughtcrime.securesms.util.concurrent.ListenableFuture.Listener;
|
|
|
|
|
import org.whispersystems.libaxolotl.util.guava.Optional;
|
|
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.util.concurrent.ExecutionException;
|
|
|
|
|
|
|
|
|
|
public class AttachmentManager {
|
|
|
|
|
|
|
|
|
@ -72,25 +72,18 @@ public class AttachmentManager {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void clear() {
|
|
|
|
|
AlphaAnimation animation = new AlphaAnimation(1.0f, 0.0f);
|
|
|
|
|
animation.setDuration(200);
|
|
|
|
|
animation.setAnimationListener(new Animation.AnimationListener() {
|
|
|
|
|
ViewUtil.fadeOut(attachmentView, 200).addListener(new Listener<Boolean>() {
|
|
|
|
|
@Override
|
|
|
|
|
public void onAnimationStart(Animation animation) {}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onAnimationRepeat(Animation animation) {}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onAnimationEnd(Animation animation) {
|
|
|
|
|
slide = Optional.absent();
|
|
|
|
|
public void onSuccess(Boolean result) {
|
|
|
|
|
thumbnail.clear();
|
|
|
|
|
attachmentView.setVisibility(View.GONE);
|
|
|
|
|
attachmentListener.onAttachmentChanged();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
attachmentView.startAnimation(animation);
|
|
|
|
|
@Override
|
|
|
|
|
public void onFailure(ExecutionException e) {}
|
|
|
|
|
});
|
|
|
|
|
slide = Optional.absent();
|
|
|
|
|
audioView.cleanup();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|