Skip to content

Instantly share code, notes, and snippets.

@ahmed729877
ahmed729877 / TextView.java
Created June 2, 2020 17:27 — 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;