Example usage for android.widget FrameLayout subclass-usage

List of usage examples for android.widget FrameLayout subclass-usage

Introduction

In this page you can find the example usage for android.widget FrameLayout subclass-usage.

Usage

From source file com.lovejjfg.blogdemo.ui.HeaderRefreshLayout.java

@SuppressWarnings("unused")
public class HeaderRefreshLayout extends FrameLayout
        implements NestedScrollingParent, NestedScrollingChild, TouchCircleView.OnLoadingListener {
    private String TAG = HeaderRefreshLayout.class.getSimpleName();
    // configurable attribs

From source file com.lovejjfg.fragments.widget.HeaderRefreshLayout.java

@SuppressWarnings("unused")
public class HeaderRefreshLayout extends FrameLayout
        implements NestedScrollingParent, NestedScrollingChild, TouchCircleView.OnLoadingListener {
    private static String TAG = "HeaderRefresh";
    // configurable attribs
    // state

From source file com.lee.sdk.widget.viewpager.BdPagerTabHost.java

/**
 * ??Tabtab???adapter?
 * {@link #setTabAdapter(Adapter)}?tab
 * 
 * ?ViewPager??
 * 

From source file cn.jay.widget.BottomNavigationItemView.java

/**
 * @hide
 */
@RestrictTo(GROUP_ID)
public class BottomNavigationItemView extends FrameLayout implements MenuView.ItemView {
    public static final int INVALID_ITEM_POSITION = -1;

From source file com.google.android.marvin.talkback.tutorial.TutorialModule.java

/**
 * Abstract class that represents a single module within a tutorial.
 */
@TargetApi(16)
abstract class TutorialModule extends FrameLayout implements OnClickListener {
    private static final int TRIGGER_DELAY = 1500;

From source file butter.droid.widget.ScrimInsetsFrameLayout.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).
 * <p/>
 * Essentially its used to allow a navigation drawer to appear behind the status bar.
 */

From source file com.medhdj.pagergallery.PagerGalleryContainer.java

/**
 * PagerContainer: A layout that displays a ViewPager with its children that are
 * outside the typical pager bounds.
 */
public class PagerGalleryContainer extends FrameLayout implements ViewPager.OnPageChangeListener {
    private ViewPager mPager;

From source file com.ltf.mytoolslibrary.viewbase.viewPagerGuidanceActivityMyLib.SpringIndicator.java

public class SpringIndicator extends FrameLayout {

    private static final int INDICATOR_ANIM_DURATION = 3000;

    private float acceleration = 0.5f;
    private float headMoveOffset = 0.6f;

From source file com.jungle.widgets.view.JungleLanternView.java

public class JungleLanternView extends FrameLayout {

    public interface IndicatorCreator {
        JungleIndexIndicatorView createIndicator(ViewGroup container);
    }

From source file com.josecalles.porridge.widget.BottomSheet.java

/**
 * A {@link FrameLayout} which can be dragged downward to be dismissed (either directly or via a
 * specified nested scrolling child).  It expects to contain a single child view and exposes a
 * listener interface to react to it's dismissal.
 *
 * View dragging has the benefit of reporting it's velocity allowing us to respond to flings etc