List of usage examples for android.view ViewGroup subclass-usage
From source file com.boha.malengagolf.library.util.PagerTitleStrip22.java
/** * Since v23 of the support library contain a layout bug we include the v22 of these files. * https://code.google.com/p/android/issues/detail?id=184715 */ public class PagerTitleStrip22 extends ViewGroup { private static final String TAG = "PagerTitleStrip";
From source file net.microtrash.clapcamera.Preview.java
/** * * openCamera() onSizeChanged() onLayout() onLayout() surfaceCreated() * surfaceChanged() onLayout() */ class Preview extends ViewGroup implements SurfaceHolder.Callback { // <1>
From source file com.hakerjack.experiments.CustomSwipeRefreshLayout.java
/**
* This is a modified version of Android's {@link android.support.v4.widget.SwipeRefreshLayout}.
* It uses our own spinner indicator instead of the android default one. It also support customized
* indicator as you can subclass {@link SwipeRefreshLayoutIndicator} and use your own custom class for
* drawing and loading animation.
*
From source file ch.tutti.android.bottomsheet.ResolverDrawerLayout.java
public class ResolverDrawerLayout extends ViewGroup { private static final String TAG = "ResolverDrawerLayout"; private static final String RECYCLERVIEW_CLASS_NAME = "android.support.v7.widget.RecyclerView";
From source file com.daiv.android.twitter.manipulations.widgets.swipe_refresh_layout.FullScreenSwipeRefreshLayout.java
/**
* The SwipeRefreshLayout should be used whenever the user can refresh the
* contents of a view via a vertical swipe gesture. The activity that
* instantiates this view should add an OnRefreshListener to be notified
* whenever the swipe to refresh gesture is completed. The SwipeRefreshLayout
* will notify the listener each and every time the gesture is completed again;
From source file chinanurse.cn.nurse.list.WaveSwipeRefreshLayout.java
/** * @author amyu */ public class WaveSwipeRefreshLayout extends ViewGroup implements ViewTreeObserver.OnPreDrawListener { private enum VERTICAL_DRAG_THRESHOLD {
From source file be.virtualsushi.gaz.view.ActivityChooserView.java
/**
* This class is a view for choosing an activity for handling a given
* {@link Intent}.
* <p>
* The view is composed of two adjacent buttons:
* <ul>
From source file be.virtualsushi.tick5.view.ActivityChooserView.java
/**
* This class is a view for choosing an activity for handling a given
* {@link Intent}.
* <p>
* The view is composed of two adjacent buttons:
* <ul>
From source file com.svo.library.widget.RLWebBrowser.java
/** * * @author ??<br><br> * ??????? */ public class RLWebBrowser extends ViewGroup {
From source file com.gmy.widget.swiperefresh.SwipeRefreshLayout.java
public class SwipeRefreshLayout extends ViewGroup { private static final String LOG_TAG = SwipeRefreshLayout.class.getSimpleName(); private static final long RETURN_TO_ORIGINAL_POSITION_TIMEOUT = 300; private static final float ACCELERATE_INTERPOLATION_FACTOR = 1.5f; private static final float DECELERATE_INTERPOLATION_FACTOR = 2f;