Example usage for android.widget LinearLayout subclass-usage

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

Introduction

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

Usage

From source file com.google.samples.apps.iosched.ui.widget.CustomRatingBar.java

/**
 * Replacement for a {@link android.widget.RatingBar} widget for providing ratings for sessions.
 * Provides ease of use for accessibility for use with Talkback and other assistive technologies.
 * <p/>
 * TODO: add explanation of attributes.
 */

From source file com.actionbarsherlock.internal.widget.FakeDialogPhoneWindow.java

public class FakeDialogPhoneWindow extends LinearLayout {
    final TypedValue mMinWidthMajor = new TypedValue();
    final TypedValue mMinWidthMinor = new TypedValue();

    public FakeDialogPhoneWindow(Context context, AttributeSet attrs) {
        super(context, attrs);

From source file me.henrytao.smoothappbarlayout.SmoothCollapsingToolbarLayout.java

/**
 * Created by henrytao on 9/24/15.
 */
public class SmoothCollapsingToolbarLayout extends LinearLayout {

    private static void log(String s, Object... args) {

From source file me.drozdzynski.library.steppers.SteppersView.java

public class SteppersView extends LinearLayout {

    private SteppersAdapter steppersAdapter;

    private Config config;
    private List<SteppersItem> items;

From source file com.waz.zclient.ui.cursor.CursorToolbar.java

public class CursorToolbar extends LinearLayout {

    private Callback callback;

    private int buttonWidth;
    private View touchedButtonContainer;

From source file io.mattcarroll.hover.defaulthovermenu.toolbar.ToolbarNavigatorContent.java

/**
 * {@link Navigator} implementation  that displays content with a {@link Toolbar} on top..
 */
public class ToolbarNavigatorContent extends LinearLayout implements ToolbarNavigator, NavigatorContent {

    private Toolbar mToolbar;

From source file com.honestme.animetasteex.FloatLabelLayout.java

/**
 * Layout which an {@link EditText} to show a floating label when the hint is hidden
 * due to the user inputting text.
 *
 * @see <a href="https://dribbble.com/shots/1254439--GIF-Mobile-Form-Interaction">Matt D. Smith on Dribble</a>
 * @see <a href="http://bradfrostweb.com/blog/post/float-label-pattern/">Brad Frost's blog post</a>

From source file com.example.sanjayf.floatlabellayout.FloatLabelLayout.java

/**
 * Layout which an {@link android.widget.EditText} to show a floating label when the hint is hidden
 * due to the user inputting text.
 *
 * @see <a href="https://dribbble.com/shots/1254439--GIF-Mobile-Form-Interaction">Matt D. Smith on Dribble</a>
 * @see <a href="http://bradfrostweb.com/blog/post/float-label-pattern/">Brad Frost's blog post</a>

From source file com.jasonchen.microlang.view.LinearViewPagerIndicator.java

public class LinearViewPagerIndicator extends LinearLayout
        implements ViewPager.OnPageChangeListener, View.OnClickListener {
    private static final String TAG = LinearViewPagerIndicator.class.getSimpleName();

    private int mForeground = Color.WHITE;
    private boolean mMeasured = false;

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

public class CheckableOptionView extends LinearLayout {

    private ImageView icon;
    private TextView description;

    private boolean mandatory;