package com.mobify.astro.dialogs;

import android.content.Context;
import android.widget.FrameLayout;

public class DialogLayout extends FrameLayout {
    public DialogLayout(Context context) {
        super(context);
    }

    // This getter/setter is used by the ObjectAnimators
    // that animate the modal view into/out of place.
    public float getTranslationYPercentage() {
        return getTranslationY() / getHeight();
    }

    public void setTranslationYPercentage(float translationYPercentage) {
        setTranslationY(getHeight() * translationYPercentage);
    }
}
