List of usage examples for android.widget EditText subclass-usage
From source file org.homelinux.tapiri.jei.essem.AutoFitTextView.java
public class AutoFitTextView extends EditText { public AutoFitTextView(Context context) { super(context); init(); }
From source file com.skubit.satoshidice.placebet.BetEditText.java
public class BetEditText extends EditText { private Intent mEventIntent; public BetEditText(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle);
From source file android.support.v7.internal.widget.TintEditText.java
/**
* An tint aware {@link android.widget.EditText}.
* <p>
* This will automatically be used when you use {@link android.widget.EditText} in your
* layouts. You should only need to manually use this class when writing custom views.
*/
From source file com.netpace.expressit.android.ui.TypefaceEditText.java
public class TypefaceEditText extends EditText { /** An <code>LruCache</code> for previously loaded typefaces. */ private static LruCache<String, Typeface> sTypefaceCache = new LruCache<String, Typeface>(12); public TypefaceEditText(Context context, AttributeSet attrs) {
From source file de.struckmeierfliesen.ds.wochenbericht.ClearableEditText.java
/**
* To change clear icon, set
*
* <pre>
* android:drawableRight="@drawable/custom_icon"
* </pre>
From source file android.support.v7.widget.AppCompatEditText.java
/**
* A {@link EditText} which supports compatible features on older version of the platform,
* including:
* <ul>
* <li>Supports {@link R.attr#textAllCaps} style attribute which works back to
* {@link android.os.Build.VERSION_CODES#ECLAIR_MR1 Eclair MR1}.</li>
From source file android.support.v7ox.widget.AppCompatEditText.java
/**
* A {@link EditText} which supports compatible features on older version of the platform,
* including:
* <ul>
* <li>Supports {@link R.attr#textAllCaps_ox} style attribute which works back to
* {@link android.os.Build.VERSION_CODES#ECLAIR_MR1 Eclair MR1}.</li>
From source file android.support.v7.widget.XpAppCompatEditText.java
/**
* A {@link EditText} which supports compatible features on older version of the platform,
* including:
* <ul>
* <li>Supports {@link android.support.v7.appcompat.R.attr#textAllCaps} style attribute which works back to
* {@link android.os.Build.VERSION_CODES#GINGERBREAD Gingerbread}.</li>
From source file de.appetites.android.menuItemSearchAction.MenuItemSearchAction.java
/**
* <p>This class creates a MenuItem with an expandable and collapsable ActionView for search purposes</p>
*
* <p>It is based on the great ActionBar Sherlock of Jake Wharton. The problem with the original SearchView is,
* that the style for the dark ActionBar is wrong; i.e. black text on a dark gray background.</p>
*
From source file com.alimuzaffar.lib.widgets.PinEntryEditText.java
public class PinEntryEditText extends EditText { public static final String XML_NAMESPACE_ANDROID = "http://schemas.android.com/apk/res/android"; private String mMask = null; private StringBuilder mMaskChars = null; private int mAnimatedType = 0;