List of usage examples for android.widget TextView subclass-usage
From source file com.yifan.bottombar.BottomBarBadge.java
class BottomBarBadge extends TextView { @VisibleForTesting static final String STATE_COUNT = "STATE_BADGE_COUNT_FOR_TAB_"; private int count; private boolean isVisible = false;
From source file com.actionbarsherlock.internal.widget.CapitalizingTextView.java
public class CapitalizingTextView extends TextView { private static final boolean SANS_ICE_CREAM = Build.VERSION.SDK_INT < Build.VERSION_CODES.ICE_CREAM_SANDWICH; private static final boolean IS_GINGERBREAD = Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD; private static final int[] R_styleable_TextView = new int[] { android.R.attr.textAllCaps }; private static final int R_styleable_TextView_textAllCaps = 0;
From source file com.community.yuequ.bottombar.BottomBarBadge.java
class BottomBarBadge extends TextView { @VisibleForTesting static final String STATE_COUNT = "STATE_BADGE_COUNT_FOR_TAB_"; private int count; private boolean isVisible = false;
From source file com.handsomeyang.mango.thrid.bottombar.BottomBarBadge.java
class BottomBarBadge extends TextView { @VisibleForTesting static final String STATE_COUNT = "STATE_BADGE_COUNT_FOR_TAB_"; private int count; private boolean isVisible = false;
From source file com.ez.gallery.ucrop.view.widget.AspectRatioTextView.java
/** * Created by Oleksii Shliama (https://github.com/shliama). */ public class AspectRatioTextView extends TextView { private final Rect mCanvasClipBounds = new Rect();
From source file com.abcs.hqbtravel.wedgt.ReadMoreTextView.java
/** * Created by borja on 17/4/16. */ public class ReadMoreTextView extends TextView { private static final int TRIM_MODE_LINES = 0;
From source file com.abcs.haiwaigou.yyg.view.ReadMoreTextView.java
/** * Created by borja on 17/4/16. */ public class ReadMoreTextView extends TextView { private static final int TRIM_MODE_LINES = 0;
From source file com.abcs.huaqiaobang.yiyuanyungou.yyg.view.ReadMoreTextView.java
/** * Created by borja on 17/4/16. */ public class ReadMoreTextView extends TextView { private static final int TRIM_MODE_LINES = 0;
From source file roboguice.calculator.view.TickerTapeView.java
/**
* A simple TextView that knows how to read an RpnStack
* and display it.
*
* @see {@link #refresh()}
*/
From source file com.benlinskey.greekreference.GreekTextView.java
/**
* A custom <code>TextView</code> that uses a font capable of displaying polytonic Greek
* characters.
* <p>
* This is a modified version of the file TypefaceTextView.java, obtained from
* <a href="http://www.tristanwaddington.com/2012/09/android-textview-with-custom-font-support/">