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 com.commonsware.cwac.colormixer.ColorMixer.java

public class ColorMixer extends RelativeLayout {
    private static final String SUPERSTATE = "superState";
    private static final String COLOR = "color";
    private View swatch = null;
    private SeekBar red = null;
    private SeekBar blue = null;

From source file com.byteshop.slidingpanel.DraggableLayout.java

/**
 * Custom ViewGroup that extends RelativeLayout 
 * for better handling of touch inputs
 *
 */
public class DraggableLayout extends RelativeLayout {

From source file pl.wasat.smarthma.customviews.EntryItemView.java

/**
 * The type Entry item view.
 */
public class EntryItemView extends RelativeLayout implements SpiceListItemView<Entry>, Animation.AnimationListener {

    private final OnSlideElementListener listener;

From source file com.baozou.rxjavaexample.view.topcourses.TopStoriesPagerContainer.java

/**
 * PagerContainer: A layout that displays a ViewPager with its children that are outside
 * the typical pager bounds.
 */
@SuppressLint("NewApi")
public class TopStoriesPagerContainer extends RelativeLayout implements ViewPager.OnPageChangeListener {

From source file com.manning.androidhacks.hack017.view.CreateAccountContainer.java

public class CreateAccountContainer extends RelativeLayout {

    public CreateAccountContainer(Context context) {
        super(context);
    }

From source file com.jaspersoft.android.jaspermobile.widget.AbstractPaginationView.java

/**
 * @author Tom Koptel
 * @since 2.0
 */
public abstract class AbstractPaginationView extends RelativeLayout {
    public static final int FIRST_PAGE = 1;

From source file org.kymjs.chat.widget.KJChatKeyboard.java

/**
 * ?
 *
 * @author kymjs (http://www.kymjs.com/)
 */
public class KJChatKeyboard extends RelativeLayout implements SoftKeyboardStateHelper.SoftKeyboardStateListener {

From source file com.yamei.shop.chat.widget.KJChatKeyboard.java

/**
 * ?
 *
 * @author kymjs (http://www.kymjs.com/)
 */
public class KJChatKeyboard extends RelativeLayout implements SoftKeyboardStateHelper.SoftKeyboardStateListener {

From source file com.capricorn.ArcMenu.java

/**
 * A custom view that looks like the menu in <a href="https://path.com">Path
 * 2.0</a> (for iOS).
 * 
 * @author Capricorn
 * 

From source file com.auth0.android.lock.views.HeaderView.java

public class HeaderView extends RelativeLayout {
    private View header;
    private ImageView logo;
    private TextView text;

    public HeaderView(Context context, Theme lockTheme) {