Skip to content

Instantly share code, notes, and snippets.

@antcam
antcam / TextView.java
Created July 22, 2018 13:54 — forked from udacityandroid/TextView.java
Android for Beginners : Simplified TextView class
/**
* Displays text to the user.
*/
public class TextView extends View {
// String value
private String mText;
// Text color of the text
private int mTextColor;