Skip to content

Instantly share code, notes, and snippets.

View IAMNITESHPANDIT's full-sized avatar
🖥️
</>

NITESH KUMAR PANDEY IAMNITESHPANDIT

🖥️
</>
View GitHub Profile
@udacityandroid
udacityandroid / TextView.java
Created June 15, 2015 18:23
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;