In my app Edit view allow only the Capital letters, Numbers and hyphen. So I had a filter for that like
char[] acceptedChars = new char[]{'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-'};
mEnterRecordername.setFilters(new InputFilter[]{filter, filterArray});
In this case, is it possible to show filter characters only in the soft key?