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.chen.mail.ui.FolderItemView.java

/**
 * The view for each folder in the folder list.
 */
public class FolderItemView extends RelativeLayout {
    private final String LOG_TAG = LogTag.getLogTag();

From source file com.stepstone.stepper.internal.StepTab.java

/**
 * A widget for a single tab in the {@link TabsContainer}.
 */
public class StepTab extends RelativeLayout {

    private static final float INACTIVE_STEP_TITLE_ALPHA = 0.54f;

From source file com.indeema.mail.ui.FolderItemView.java

/**
 * The view for each folder in the folder list.
 */
public class FolderItemView extends RelativeLayout {
    private final String LOG_TAG = LogTag.getLogTag();

From source file com.android.mail.ui.FolderItemView.java

/**
 * The view for each folder in the folder list.
 */
public class FolderItemView extends RelativeLayout {
    private final String LOG_TAG = LogTag.getLogTag();

From source file com.yangwei.autohidetabsview.library.AutoHideTabsView.java

public class AutoHideTabsView extends RelativeLayout {

    private static final String TAG = "AutoHideTabsView";
    private TabPageIndicator mTabContainer;
    private ViewPager mViewPager;
    private TabContainerState mState;

From source file com.stfalcon.chatkit.messages.MessageInput.java

/**
 *  Component for input outcoming messages
 */
public class MessageInput extends RelativeLayout implements View.OnClickListener, TextWatcher {

    private EditText messageInput;

From source file yahier.exst.widget.EmojiKeyboard.java

/**
 * @author Hieu Rocker (rockerhieu@gmail.com).
 */
public class EmojiKeyboard extends RelativeLayout {

    private OnEmojiconBackspaceClickedListener mOnEmojiconBackspaceClickedListener;

From source file nkfust.selab.android.explorer.layout.view.PhotoViewer.java

public class PhotoViewer extends RelativeLayout {

    private TextView textView;
    private String text;
    private int index;
    private ImageButton leftBtn, rightBtn;

From source file me.selinali.tribbble.ui.shot.ShotDetailsView.java

public class ShotDetailsView extends RelativeLayout {

    @BindView(R.id.textview_shot_name)
    TextView mShotNameTextView;
    @BindView(R.id.textview_date)
    TextView mDateTextView;

From source file com.tzapps.common.ui.view.PagerContainer.java

/**
 * PagerContainer: A layout that displays a ViewPager with its children that are outside the typical
 * pager bounds.
 */
public class PagerContainer extends RelativeLayout implements ViewPager.OnPageChangeListener {