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.android.tv.guide.ProgramItemView.java

public class ProgramItemView extends TextView {
    private static final String TAG = "ProgramItemView";

    private static final long FOCUS_UPDATE_FREQUENCY = TimeUnit.SECONDS.toMillis(1);
    private static final int MAX_PROGRESS = 10000; // From android.widget.ProgressBar.MAX_VALUE

From source file com.jaredrummler.materialspinner.MaterialSpinner.java

/**
 * A spinner that shows a {@link PopupWindow} under the view when clicked.
 */
public class MaterialSpinner extends TextView {

    /**

From source file com.facebook.widget.LoginTextView.java

/**
 * A Log In/Log Out button that maintains session state and logs in/out for the
 * app.
 * <p/>
 * This control will create and use the active session upon construction if it
 * has the available data (if the app ID is specified in the manifest). It will

From source file despotoski.nikola.github.com.bottomnavigationlayout.BottomNavigationTextView.java

/**
 * Created by Nikola on 3/23/2016.
 */
public final class BottomNavigationTextView extends TextView implements BottomNavigation {

    private static final float ACTIVE_TEXT_SIZE = 14;

From source file com.tct.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 FolderSpan}s can be.
 * They cannot exceed the TextView line width, or else {@link Layout}
 * will split up the spans in strange places.
 */