You must program a simple Activity class from which you can enter some words - and then show them.
List<String> = new ArrayList<>()
Toast.makeText(...)
and/or in the Activity using another TextView for output (below the buttons)EditText has an attribute inputType. Use this attribute to try different input types. Run the app and notice the difference.
Some input types:
They may not all be relevant for this app - but try them anyway.
Which input type seems most relevant for this app?
You are allowed to make a nicer layout.