Example usage for android.widget RelativeLayout subclass-usage

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

Introduction

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

Usage

From source file im.vector.view.UnreadCounterBadgeView.java

public class UnreadCounterBadgeView extends RelativeLayout {
    // the background settings
    public static final int HIGHLIGHTED = 0;
    public static final int NOTIFIED = 1;
    public static final int DEFAULT = 2;

From source file com.alphanetworks.uplayer.ui.widget.ScrimLayout.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).
 */
public class ScrimLayout extends RelativeLayout {
    private Drawable mInsetForeground;

From source file de.rwth_aachen.comsys.audiosync.ui.ScrimInsetsRelativeLayout.java

/**
 * A layout that draws something in the insets passed to {@link #fitSystemWindows(Rect)}, i.e.
 * the area above UI chrome (status and navigation bars, overlay action bars).
 */
public class ScrimInsetsRelativeLayout extends RelativeLayout {
    private Drawable mInsetForeground;

From source file com.example.android.spotifystreamer.ui.ScrimInsetsRelativeLayout.java

/**
 * A layout that draws something in the insets passed to {@link #fitSystemWindows(Rect)}, i.e.
 * the area above UI chrome (status and navigation bars, overlay action bars).
 */
public class ScrimInsetsRelativeLayout extends RelativeLayout {
    private Drawable mInsetForeground;

From source file com.misterpereira.android.kiteplayer.ui.ScrimInsetsRelativeLayout.java

/**
 * A layout that draws something in the insets passed to {@link #fitSystemWindows(Rect)}, i.e.
 * the area above UI chrome (status and navigation bars, overlay action bars).
 */
public class ScrimInsetsRelativeLayout extends RelativeLayout {
    private Drawable mInsetForeground;

From source file android.support.design.internal.ScrimInsetsRelativeLayout.java

/**
 * @hide
 */
public class ScrimInsetsRelativeLayout extends RelativeLayout {

    private Drawable mInsetForeground;

From source file de.msal.scannerview.ScannerView.java

/**
 * @since 17.11.15
 */
public class ScannerView extends RelativeLayout {

    private final Animation mSlideInAnimation;

From source file org.kontalk.ui.view.AvatarListItem.java

/**
 * A list item for avatar use.
 * @author Daniele Ricci
 */
public abstract class AvatarListItem extends RelativeLayout implements ContactCallback {

From source file info.papdt.blacklight.ui.common.DragRelativeLayout.java

public class DragRelativeLayout extends RelativeLayout {
    private static final String TAG = DragRelativeLayout.class.getSimpleName();

    public interface Callback {
        int onDraggedVertically(int top, int dy);

From source file com.filemanager.free.ui.views.ScrimInsetsRelativeLayout.java

public class ScrimInsetsRelativeLayout extends RelativeLayout {
    private Drawable mInsetForeground;

    private Rect mInsets;
    private Rect mTempRect = new Rect();
    private OnInsetsCallback mOnInsetsCallback;