Skip to content

Instantly share code, notes, and snippets.

View KUNAL1612's full-sized avatar

Kunal Chakrabarty KUNAL1612

View GitHub Profile
@KUNAL1612
KUNAL1612 / TextView.java
Created October 11, 2017 14:29 — 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;