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.github.andrewlord1990.materialandroid.component.list.ListItemView.java

/**
 * A view that meets the Material Design specification for a list item view. It supports many different variants,
 * containing one to three lines of text, an icon at the end (right) and an avatar at the start (left).
 */
public class ListItemView extends FrameLayout {

From source file com.android.fastlibrary.ui.activity.swipeback.SwipeBackLayout.java

public class SwipeBackLayout extends FrameLayout {
    /**
     * Minimum velocity that will be detected as a fling
     */
    private static final int MIN_FLING_VELOCITY = 400; // dips per second

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

/**
 */
public class CurveLayout extends FrameLayout {
    private static final String TAG = "CurveLayout";
    private static final String KEY_DEFAULT = "key_default";
    private static final String KEY_EXPAND = "key_expand";

From source file com.android.systemui.qs.QSPanelTopView.java

public class QSPanelTopView extends FrameLayout {

    private static final String TAG = "QSPanelTopView";

    public static final int TOAST_DURATION = 2000;

From source file com.lwz.dragpanelayout.view.DragPaneLayout.java

/**
 * ?
 * @author Liu Wenzhu<lwz0316@gmail.com>
 * 2015-3-5 ?1:58:42
 */
public class DragPaneLayout extends FrameLayout {

From source file com.example.tt.pullrefresh.widget.CurveLayout.java

/**
 */
public class CurveLayout extends FrameLayout {
    private static final String TAG = "CurveLayout";
    private static final String KEY_DEFAULT = "key_default";
    private static final String KEY_EXPAND = "key_expand";

From source file com.like.swipmenulayout.SwipeMenuLayout.java

public class SwipeMenuLayout extends FrameLayout implements SwipeSwitch {
    /**
     * Left menu.
     */
    public static final int LEFT_DIRECTION = 1;
    /**

From source file br.com.cybereagle.androidwidgets.view.PagerContainer.java

/**
 * PagerContainer: A layout that displays a ViewPager with its children that are outside
 * the typical pager bounds.
 *
 * To use this, wrap your ViewPager with it, set the ViewPager's width to be equal the width
 * of its child, set the ViewPager's gravity to center and make this PagerContainer larger

From source file com.myhexaville.iconanimations.gooey_fab.GooeyFabCompatImpl.java

/**
 * Created with love by ihor on 2017-01-27.
 */
final class GooeyFabCompatImpl extends FrameLayout {
    private static final String LOG_TAG = "GooeyFabCompatImpl";
    static final Interpolator ANIM_INTERPOLATOR = new FastOutLinearInInterpolator();

From source file com.handmark.pulltorefresh.library.internal.LoadingLayout.java

public class LoadingLayout extends FrameLayout implements Constants {

    static final int DEFAULT_ROTATION_ANIMATION_DURATION = 600;

    private final ImageView mHeaderArrow;
    private final ProgressBar mHeaderProgress;