List of usage examples for android.widget LinearLayout subclass-usage
From source file de.mrapp.android.validation.AbstractValidateableView.java
/**
* An abstract base class for all views, whose value should be able to be validated according to the
* pattern, which is suggested by the Material Design guidelines.
*
* @param <ViewType>
* The type of the view, whose value should be able to be validated
From source file de.madvertise.android.sdk.MadView.java
/** * Ad View Container to show an ad * */ public class MadView extends LinearLayout {
From source file com.android.mail.ui.NestedFolderTeaserView.java
/** * The teaser list item in the conversation list that shows nested folders. */ public class NestedFolderTeaserView extends LinearLayout implements ConversationSpecialItemView { private static final String LOG_TAG = "NestedFolderTeaserView";
From source file com.community.yuequ.bottombar.BottomBar.java
public class BottomBar extends LinearLayout implements View.OnClickListener, View.OnLongClickListener { private static final String STATE_CURRENT_SELECTED_TAB = "STATE_CURRENT_SELECTED_TAB"; private static final float DEFAULT_INACTIVE_SHIFTING_TAB_ALPHA = 0.6f; // Behaviors
From source file com.handsomeyang.mango.thrid.bottombar.BottomBar.java
public class BottomBar extends LinearLayout implements View.OnClickListener, View.OnLongClickListener { private static final String STATE_CURRENT_SELECTED_TAB = "STATE_CURRENT_SELECTED_TAB"; private static final float DEFAULT_INACTIVE_SHIFTING_TAB_ALPHA = 0.6f; // Behaviors
From source file org.chromium.chrome.browser.widget.findinpage.FindToolbar.java
/** A toolbar providing find in page functionality. */ public class FindToolbar extends LinearLayout implements TabWebContentsDelegateAndroid.FindResultListener, TabWebContentsDelegateAndroid.FindMatchRectsListener { private static final long ACCESSIBLE_ANNOUNCEMENT_DELAY_MILLIS = 500; // Toolbar UI
From source file de.grobox.liberario.ui.LocationView.java
public class LocationView extends LinearLayout implements LoaderManager.LoaderCallbacks, HomePickerDialogFragment.OnHomeChangedListener { private final String LOCATION = "location"; private final String TEXT = "text"; private final String TEXT_POSITION = "textPosition";
From source file org.telegram.ui.Components.NumberPicker.java
public class NumberPicker extends LinearLayout { private static final int SELECTOR_WHEEL_ITEM_COUNT = 3; private static final long DEFAULT_LONG_PRESS_UPDATE_INTERVAL = 300; private static final int SELECTOR_MIDDLE_ITEM_INDEX = SELECTOR_WHEEL_ITEM_COUNT / 2; private static final int SELECTOR_MAX_FLING_VELOCITY_ADJUSTMENT = 8;
From source file bottombar.BottomBar.java
public class BottomBar extends LinearLayout implements View.OnClickListener, View.OnLongClickListener { private static final String STATE_CURRENT_SELECTED_TAB = "STATE_CURRENT_SELECTED_TAB"; private static final float DEFAULT_INACTIVE_SHIFTING_TAB_ALPHA = 0.6f; private BatchTabPropertyApplier batchPropertyApplier;
From source file com.fuzz.indicator.CutoutViewIndicator.java
/**
* A RecyclerView-inspired ViewGroup for showing an indicator traversing multiple child Views ('cells').
* <p>
* There's a nice monospace line drawing in the javadoc for {@link #showOffsetIndicator(int, float)} that basically sums up
* its appearance when operating under an {@link ImageCellGenerator}.
* </p>