Skip to content

Instantly share code, notes, and snippets.

View PascalR2014's full-sized avatar
🏠
Working from home - #Stay at Home

Pascal JP. Richet PascalR2014

🏠
Working from home - #Stay at Home
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;