bfe4ad6c34
Closes #4610 Closes #3563 // FREEBIE
68 lines
2.1 KiB
Java
68 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 org.thoughtcrime.securesms.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;
|
|
}
|
|
}
|