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.nuaa.larry.wifiindoorlocation.widge.fabProgressCircle.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 com.mts2792.launcher.Hotseat.java

public class Hotseat extends FrameLayout implements UserEventDispatcher.LaunchSourceProvider {

    private CellLayout mContent;

    private Launcher mLauncher;

From source file com.lemon.kva.view.fragmentswitcher.FragmentSwitcher.java

/**
 * A fragment switcher similar to a {@link android.support.v4.view.ViewPager}
 * that cannot be swiped and does not keep offscreen fragments like a ViewPager.
 *
 * The instance state of the fragments in the adapter will be managed automatically.
 * Perfect for use with tabs, navigation drawers, or any interface that switches fragments.

From source file com.evilduck.animtest.DraggedPanelLayout.java

public class DraggedPanelLayout extends FrameLayout {

    private static final float PARALLAX_FACTOR = 0.2f;

    private static DecelerateInterpolator sDecelerator = new DecelerateInterpolator();

From source file android.support.wear.widget.CircularProgressLayout.java

/**
 * {@link CircularProgressLayout} adds a circular countdown timer behind the view it contains,
 * typically used to automatically confirm an operation after a short delay has elapsed.
 *
 * <p>The developer can specify a countdown interval via {@link #setTotalTime(long)} and a listener
 * via {@link #setOnTimerFinishedListener(OnTimerFinishedListener)} to be called when the time has

From source file com.lemon.aklib.widget.fragmentswitcher.FragmentSwitcher.java

/**
 * A fragment switcher similar to a {@link android.support.v4.view.ViewPager}
 * that cannot be swiped and does not keep offscreen fragments like a ViewPager.
 *
 * The instance state of the fragments in the adapter will be managed automatically.
 * Perfect for use with tabs, navigation drawers, or any interface that switches fragments.

From source file com.kanhan.widget.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.example.android.supportv4.media.MediaController.java

/**
 * Helper for implementing media controls in an application.
 * Use instead of the very useful android.widget.MediaController.
 * This version is embedded inside of an application's layout.
 */
public class MediaController extends FrameLayout {

From source file com.liferay.mobile.screens.viewsets.defaultviews.userportrait.UserPortraitView.java

/**
 * @author Javier Gamarra
 * @author Jose Manuel Navarro
 */
public class UserPortraitView extends FrameLayout implements UserPortraitViewModel, View.OnClickListener {

From source file com.android.launcher3.Hotseat.java

public class Hotseat extends FrameLayout implements UserEventDispatcher.LaunchSourceProvider {

    public static boolean isHotseatTouched = false;

    private CellLayout mContent;