List of usage examples for android.widget LinearLayout subclass-usage
From source file com.actionbarsherlock.internal.nineoldandroids.widget.NineLinearLayout.java
public class NineLinearLayout extends LinearLayout { private final AnimatorProxy mProxy; public NineLinearLayout(Context context) { super(context); mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
From source file com.akingyin.librarys.widgets.BrowserLayout.java
/**
* Author: Tau.Chen
* Email: 1076559197@qq.com | tauchen1990@gmail.com
* Date: 2015/3/31.
* Description:
*/
From source file org.mareatlantica.ui.Views.EmojiView.java
public class EmojiView extends LinearLayout { private ArrayList<EmojiGridAdapter> adapters = new ArrayList<EmojiGridAdapter>(); private int[] icons = { R.drawable.ic_emoji_recent, R.drawable.ic_emoji_smile, R.drawable.ic_emoji_flower, R.drawable.ic_emoji_bell, R.drawable.ic_emoji_car, R.drawable.ic_emoji_symbol }; private Listener listener; private ViewPager pager;
From source file com.ruesga.rview.widget.ScoreWithReviewersView.java
public class ScoreWithReviewersView extends LinearLayout { private List<ScoreWithReviewItemBinding> mBindings = new ArrayList<>(); private Picasso mPicasso; private boolean mIsRemovableReviewers; private AccountInfo[] mRemovableReviewers; private OnAccountChipClickedListener mOnAccountChipClickedListener;
From source file com.androidinspain.deskclock.timer.TimerItem.java
/** * This view is a visual representation of a {@link Timer}. */ public class TimerItem extends LinearLayout { /** Displays the remaining time or time since expiration. */
From source file com.example.busking_test.viewpager.FixedTabsView.java
public class FixedTabsView extends LinearLayout implements ViewPager.OnPageChangeListener { @SuppressWarnings("unused") private static final String TAG = "com.astuetz.viewpager.extensions"; private Context mContext;
From source file com.liferay.mobile.screens.viewsets.defaultviews.auth.forgotpassword.ForgotPasswordView.java
/** * @author Jose Manuel Navarro */ public class ForgotPasswordView extends LinearLayout implements ForgotPasswordViewModel, View.OnClickListener { protected EditText loginEditText;
From source file com.aprz.easy_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.skubit.satoshidice.DiceAccountView.java
public class DiceAccountView extends LinearLayout { private static void styleAccountNick(TextView view, String nick) { view.setText(nick); view.setTypeface(FontManager.REGULAR); }
From source file cn.qbcbyb.library.view.PagerTabStrip.java
public class PagerTabStrip extends LinearLayout { private final LayoutParams LAYOUTPARAMS = new LayoutParams(0, -2, 1); private final PageListener pageListener = new PageListener(); public OnPageChangeListener delegatePageListener;