import android.app.*; import android.widget.*; import android.view.*; import android.view.KeyEvent; import android.view.inputmethod.*; import android.text.*; static TextView aTextView(S text) { TextView tv = aTextView(); tv.setText(text); ret tv; } static TextView aTextView() { ret androidUI(func -> TextView { new TextView(androidActivity()) }); }