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.obsessive.library.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.example.administrator.common.widget.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.andview.refreshview.swipe.SwipeMenuLayout.java

/**
 * Created by Yan Zhenjie on 2016/7/27.
 */
public class SwipeMenuLayout extends FrameLayout implements SwipeSwitch {

    public static final int DEFAULT_SCROLLER_DURATION = 200;

From source file com.angcyo.uiview.github.swipe.recyclerview.SwipeMenuLayout.java

/**
 * Created by Yan Zhenjie on 2016/7/27._
 */
public class SwipeMenuLayout extends FrameLayout implements SwipeSwitch {

    public static final int DEFAULT_SCROLLER_DURATION = 200;

From source file at.amartinz.hardware.sensors.BaseSensor.java

public abstract class BaseSensor extends FrameLayout implements SensorEventListener {
    private SensorManager mSensorManager;
    private LayoutInflater mInflater;

    private CardView mCardView;
    private ImageView mIcon;

From source file com.futureinst.widget.dragtop.DragTopLayout.java

/**
 * Created by chenupt@gmail.com on 2015/1/18.
 * Description : Drag down to show a menu panel on the top.
 */
public class DragTopLayout extends FrameLayout {

From source file com.example.xusoku.dragtopviewdemo.DragTopLayout.java

/**
 * Description : Drag down to show a menu panel on the top.
 */
public class DragTopLayout extends FrameLayout {

    private ViewDragHelper dragHelper;

From source file com.lixiang.weather.support.view.DragTopLayout.java

/**
 * Created by chenupt@gmail.com on 2015/1/18.
 * Description : Drag down to show a menu panel on the top.
 */
public class DragTopLayout extends FrameLayout {

From source file com.kayac.slidingmenu.ui.views.DraggableLayout.java

/**
 * The class which handling the slide animation, and touch-slide gesture
 * @author long-nguyen
 *
 */
public class DraggableLayout extends FrameLayout {

From source file au.com.zacher.popularmovies.activity.layout.CollapsingTitleLayout.java

public class CollapsingTitleLayout extends FrameLayout {

    // Pre-JB-MR2 doesn't support HW accelerated canvas scaled text so we will workaround it
    // by using our own texture
    private static final boolean USE_SCALING_TEXTURE = Build.VERSION.SDK_INT < 18;