Skip to content

Instantly share code, notes, and snippets.

@nikartm
Created March 6, 2018 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nikartm/9167a46cab13937d9947f2b42fb7b98b to your computer and use it in GitHub Desktop.
Save nikartm/9167a46cab13937d9947f2b42fb7b98b to your computer and use it in GitHub Desktop.
FooterBarLayout
package ru.dasreda.dasreda;
import android.content.Context;
import android.support.design.widget.CoordinatorLayout;
import android.util.AttributeSet;
import android.widget.FrameLayout;
/**
* @author Ivan V on 06.03.2018.
* @version 1.0
*/
@CoordinatorLayout.DefaultBehavior(FooterBarBehavior.class)
public class FooterBarLayout extends FrameLayout {
public FooterBarLayout(Context context) {
super(context);
}
public FooterBarLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
public FooterBarLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment