For my Android application, I would like there to be a sentence on the screen (a TextView
or an EditText
or something in that direction) which looks like this:
The red ___________ jumped over the lazy dog.
where the user can click on the underscore and complete the sentence themselves. I could accomplish this by having the entire sentence represented by an EditText
, but I would like the Strings The red
and jumped over the lazy dog.
to be uneditable.
I have a lot of sentences like that which should be completed, so hardcoding the uneditable parts of the string as an image or something will not work. How do I do this?