Code to hide the virtual keyboard:
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);
Put it in the onClick () of your "Finish" button, and you will have reason to believe that Android is as powerful as Xcode (if not more).
source share