I'm creating an EditText
subclass and I want to make an Editable variable to pass to the super class.
When I originally tried
private Editable unicodeText = new Editable();
I got the error
'Editable' is abstract; cannot be instantiated
Searching for this error in Google did not return any helpful results, so now that I have found the answer I am adding this question with an answer below.