Skip to content

Instantly share code, notes, and snippets.

View basil979's full-sized avatar

Basil Almraij basil979

  • basil979
View GitHub Profile
@basil979
basil979 / TextView.java
Created March 23, 2019 21:24 — 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;