mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 19:15:16 +00:00
69 lines
2.1 KiB
Java
69 lines
2.1 KiB
Java
package org.thoughtcrime.securesms.components;
|
|
|
|
import android.content.Context;
|
|
import android.support.annotation.NonNull;
|
|
import android.support.annotation.Nullable;
|
|
import android.support.v4.view.animation.FastOutSlowInInterpolator;
|
|
import android.util.AttributeSet;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
import android.view.animation.Animation;
|
|
import android.view.animation.AnimationUtils;
|
|
import android.widget.FrameLayout;
|
|
|
|
import network.loki.messenger.R;
|
|
import org.thoughtcrime.securesms.util.ViewUtil;
|
|
|
|
public class AnimatingToggle extends FrameLayout {
|
|
|
|
private View current;
|
|
|
|
private final Animation inAnimation;
|
|
private final Animation outAnimation;
|
|
|
|
public AnimatingToggle(Context context) {
|
|
this(context, null);
|
|
}
|
|
|
|
public AnimatingToggle(Context context, AttributeSet attrs) {
|
|
this(context, attrs, 0);
|
|
}
|
|
|
|
public AnimatingToggle(Context context, AttributeSet attrs, int defStyleAttr) {
|
|
super(context, attrs, defStyleAttr);
|
|
this.outAnimation = AnimationUtils.loadAnimation(getContext(), R.anim.animation_toggle_out);
|
|
this.inAnimation = AnimationUtils.loadAnimation(getContext(), R.anim.animation_toggle_in);
|
|
this.outAnimation.setInterpolator(new FastOutSlowInInterpolator());
|
|
this.inAnimation.setInterpolator(new FastOutSlowInInterpolator());
|
|
}
|
|
|
|
@Override
|
|
public void addView(@NonNull View child, int index, ViewGroup.LayoutParams params) {
|
|
super.addView(child, index, params);
|
|
|
|
if (getChildCount() == 1) {
|
|
current = child;
|
|
child.setVisibility(View.VISIBLE);
|
|
} else {
|
|
child.setVisibility(View.GONE);
|
|
}
|
|
child.setClickable(false);
|
|
}
|
|
|
|
public void display(@Nullable View view) {
|
|
if (view == current) return;
|
|
if (current != null) ViewUtil.animateOut(current, outAnimation, View.GONE);
|
|
if (view != null) ViewUtil.animateIn(view, inAnimation);
|
|
|
|
current = view;
|
|
}
|
|
|
|
public void displayQuick(@Nullable View view) {
|
|
if (view == current) return;
|
|
if (current != null) current.setVisibility(View.GONE);
|
|
if (view != null) view.setVisibility(View.VISIBLE);
|
|
|
|
current = view;
|
|
}
|
|
}
|