hyungjungsoh
Newbie
Is there such a code to hide the Chinese suggestions when the user enters text on the editText? I was able to find the code for hiding the virtual keyboard using:
I was expecting that it will also hide the chinese characters that pop out when the user enters the text... but it didn't. It only hid the keyboard. T_T Anybody have any idea on this...?
~Cheers
~Happy new year everyone.
~Hyun Jung Soh
Code:
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(name.getWindowToken(),0);
I was expecting that it will also hide the chinese characters that pop out when the user enters the text... but it didn't. It only hid the keyboard. T_T Anybody have any idea on this...?
~Cheers
~Happy new year everyone.
~Hyun Jung Soh