List of usage examples for android.widget FrameLayout subclass-usage
From source file com.ruesga.rview.widget.PagerControllerLayout.java
public class PagerControllerLayout extends FrameLayout { private static final String FRAGMENT_TAG = "pager_fragment"; public static final int INVALID_PAGE = -1;
From source file com.github.ppamorim.SlapBar.java
/**
*
* This is the correct way to create a SnackBar
* because it uses DragViewHelper class.
*
* @author Pedro Paulo de Amorim
From source file com.gigamole.millspinners.lib.CirclesWaveSpinner.java
/** * Created by GIGAMOLE on 13.04.2015. */ public class CirclesWaveSpinner extends FrameLayout { private CircleView[] circleViews = new CircleView[20];
From source file com.lovejjfg.blogdemo.ui.HeadViewFrameLayout.java
public class HeadViewFrameLayout extends FrameLayout implements NestedScrollingParent, NestedScrollingChild { private String TAG = HeadViewFrameLayout.class.getSimpleName(); // configurable attribs // state private float totalDrag;
From source file com.joaquimley.byinvitationonly.ui.ScrimInsetsFrameLayout.java
/** * A layout that draws something in the insets passed to {@link #fitSystemWindows(Rect)}, i.e. the area above UI chrome * (status and navigation bars, overlay action bars). */ public class ScrimInsetsFrameLayout extends FrameLayout { private Drawable mInsetForeground;
From source file com.sckftr.android.app.view.InsetFrameLayout.java
/** * A layout that draws something in the insets passed to {@link #fitSystemWindows(android.graphics.Rect)}, i.e. the * area above UI chrome (status and navigation bars, overlay action bars). */ public class InsetFrameLayout extends FrameLayout {
From source file com.mastercard.masterpasswallet.widgets.PagerContainer.java
/** * Custom layout for View Pager */ public class PagerContainer extends FrameLayout implements ViewPager.OnPageChangeListener { private ViewPager mPager; private boolean mNeedsRedraw = false;
From source file com.example.NavigationSampleDemo.PagerContainer.java
/** * PagerContainer: A layout that displays a ViewPager with its children that are outside * the typical pager bounds. */ public class PagerContainer extends FrameLayout implements ViewPager.OnPageChangeListener {
From source file com.lovejjfg.powerrecycle.PowerRecyclerView.java
/** * Created by Joe on 2016-03-11. * Email lovejjfg@gmail.com */ public class PowerRecyclerView extends FrameLayout implements SwipeRefreshLayout.OnRefreshListener { private SwipeRefreshLayout mRefreshLayout;
From source file com.actionbarsherlock.internal.nineoldandroids.widget.NineFrameLayout.java
public class NineFrameLayout extends FrameLayout { private final AnimatorProxy mProxy; public NineFrameLayout(Context context) { super(context); mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;