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.jinzht.pro.view.RecyclerViewHeader.java

/**
 * Created by Bartosz Lipinski
 * 31.03.15
 */
public class RecyclerViewHeader extends RelativeLayout {

From source file com.orange.labs.sample.entry.EntryRow.java

public class EntryRow extends RelativeLayout {

    private OrangeCloudAPI<AuthSession> mApi;

    // UI
    private TextView mTitleView;

From source file com.markupartist.android.widget.ActionBar.java

public class ActionBar extends RelativeLayout implements OnClickListener {

    private LayoutInflater mInflater;
    private RelativeLayout mBarView;
    private ImageView mLogoView;
    private View mBackIndicator;

From source file touchgallery.UrlTouchImageView.java

public class UrlTouchImageView extends RelativeLayout {
    protected ProgressBar mProgressBar;
    protected TouchImageView mImageView;

    protected Context mContext;
    protected LruCache<String, Bitmap> mBitmapCache;

From source file org.connectbot.views.CheckableMenuItem.java

/**
 * Created by kenny on 5/31/16.
 */
public class CheckableMenuItem extends RelativeLayout {
    private static final String ACCESSIBILITY_EVENT_CLASS_NAME = "android.widget.Switch";

From source file com.normalexception.app.rx8club.view.threaditem.ThreadItemView.java

public class ThreadItemView extends RelativeLayout {

    private Button newThreadButton;
    private EditText threadPost;

    private OnClickListener _ocl;

From source file net.cpacm.library.SimpleSliderLayout.java

/**
 * simple slider
 * Auther: cpacm
 * Date: 2016/3/8.
 */
public class SimpleSliderLayout extends RelativeLayout {

From source file com.lm.im_huanxin.ui.widget.KJChatKeyboard.java

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

From source file org.chromium.chrome.browser.widget.selection.SelectableListLayout.java

/**
 * Contains UI elements common to selectable list views: a loading view, empty view, selection
 * toolbar, shadow, and RecyclerView.
 *
 * After the SelectableListLayout is inflated, it should be initialized through calls to
 * #initializeRecyclerView(), #initializeToolbar(), and #initializeEmptyView().

From source file co.lemonlabs.android.slidingdebugmenu.SlidingDebugMenu.java

public class SlidingDebugMenu extends RelativeLayout implements View.OnClickListener {

    private static final String TAG = "SlidingDebugMenu";

    public static SlidingDebugMenu create(Context context, List<MenuModule> modules) {
        SlidingDebugMenu sdm = (SlidingDebugMenu) LayoutInflater.from(context).inflate(R.layout.sdm__drawer, null);