Skip to content

Instantly share code, notes, and snippets.

@RachaJoub
RachaJoub / TextView.java
Created May 1, 2020 11:46 — 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;