EditText without auto-correction, etc

后端 未结 4 1654
情歌与酒
情歌与酒 2020-12-05 22:23

My EditText needs to accept input consisting of partial words, names, etc. At least on my HTC Desire, this is difficult since the keyboard wants to suggest and/or correct so

4条回答
  •  心在旅途
    2020-12-05 23:12

    You can do this from the code. Set the input type of the EditText like below:

    txtEmail = (EditText) findViewById(R.id.txtEmail);
    txtEmail.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
    

    For a list of all the available input type options see http://developer.android.com/reference/android/text/InputType.html

提交回复
热议问题