List of usage examples for android.widget FrameLayout subclass-usage
From source file cn.ieclipse.af.view.AutoPlayView.java
/**
* An auto play container.
* <p>
* AutoPlayView default child views
* </p>
* <ol>
From source file com.github.jorgecastilloprz.FABProgressCircle.java
/**
* This ViewGroup wraps your FAB, so it will insert a new child on top to draw the progress
* arc around it.
*
* @author Jorge Castillo Prez
*/
From source file android.support.v7.widget.ActionBarContainer.java
/**
* This class acts as a container for the action bar view and action mode context views.
* It applies special styles as needed to help handle animated transitions between them.
* @hide
*/
@RestrictTo(GROUP_ID)
From source file ch.pantas.billsplitter.ui.FixedTabsView.java
public class FixedTabsView extends FrameLayout { private ViewPager viewPager; private PageListener pageListener;
From source file arun.com.chromer.browsing.article.view.ElasticDragDismissFrameLayout.java
/**
* A {@link FrameLayout} which responds to nested scrolls to create drag-dismissable layouts.
* Applies an elasticity factor to reduce movement as you approach the given dismiss distance.
* Optionally also scales down content during drag.
* <p>
* Adapted from
From source file com.ouyangzn.view.RefreshLayout.java
/** * Created by ouyangzn on 2016/12/8.<br/> * Description */ public class RefreshLayout extends FrameLayout {
From source file com.justplay1.shoppist.shared.widget.animboxes.SelectBoxView.java
/** * Created by Mkhytar Mkhoian. */ public class SelectBoxView extends FrameLayout implements View.OnClickListener, Animation.AnimationListener { @Bind(R.id.item_logo)
From source file com.myhexaville.iconanimations.gooey_fab.GooeyFab.java
public class GooeyFab extends FrameLayout { private static final String LOG_TAG = "GooeyFab"; static final Interpolator ANIM_INTERPOLATOR = new FastOutLinearInInterpolator(); static final int[] FOCUSED_ENABLED_STATE_SET = { android.R.attr.state_focused, android.R.attr.state_enabled }; static final long PRESSED_ANIM_DURATION = 100; static final long PRESSED_ANIM_DELAY = 100;
From source file com.example.PagerCoverFlow.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.jungle.toolbaractivity.layout.HorizontalSwipeBackLayout.java
public class HorizontalSwipeBackLayout extends FrameLayout { public interface OnSlideListener { void onSlideFinished(); }