Example usage for android.widget TextView subclass-usage

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

Introduction

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

Usage

From source file com.test.SlowLayoutView.java

public class SlowLayoutView extends TextView {

    public SlowLayoutView(Context context) {
        super(context);
    }

From source file com.test.SlowMeasureView.java

public class SlowMeasureView extends TextView {

    public SlowMeasureView(Context context) {
        super(context);
    }

From source file com.test.SlowDrawView.java

public class SlowDrawView extends TextView {

    public SlowDrawView(Context context) {
        super(context);
    }

From source file com.manning.androidhacks.hack011.view.LedTextView.java

public class LedTextView extends TextView {

    private static final String FONTS_FOLDER = "fonts";
    private static final String FONT_DIGITAL_7 = FONTS_FOLDER + File.separator + "digital-7.ttf";

    public LedTextView(Context context) {

From source file ru.adios.budgeter.widgets.TimeEditView.java

/**
 * Created by Michail Kulikov
 * 10/16/15
 */
@UiThread
public class TimeEditView extends TextView {

From source file com.coco.rolldigitaltextview.RollDigitalTextView.java

/**
 * Android roll digital text view, digital will rolling from 0 to actual value (increase), or vice versa (decrease).
 */
public class RollDigitalTextView extends TextView {
    private static final String TAG = "RollDigitalTextView";
    private static final boolean DEBUG = false;

From source file gr.plushost.prototypeapp.widgets.LabelView.java

public class LabelView extends TextView {

    private float _offsetx;
    private float _offsety;
    private float _anchorx;
    private float _anchory;

From source file com.coco.blinktextview.BlinkTextView.java

/**
 * Android blink text view with it's text repeatly fade in & fade out.
 */
public class BlinkTextView extends TextView {
    private static final String TAG = "BlinkTextView";
    private static final boolean DEBUG = false;

From source file com.android.mail.browse.SubjectAndFolderView.java

/**
 * A TextView that displays the conversation subject and list of folders for the message.
 * The view knows the widest that any of its containing {@link com.android.mail.text.FolderSpan}s
 * can be. They cannot exceed the TextView line width, or else {@link Layout} will split up the
 * spans in strange places.
 */

From source file ru.adios.budgeter.widgets.DateEditView.java

/**
 * Created by Michail Kulikov
 * 10/16/15
 */
@UiThread
public class DateEditView extends TextView {