Changed input type to capitalize words for Linear alpha fields.
This commit is contained in:
parent
f4055d9c21
commit
0bc362205f
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ class ProgrammingActivity : AppCompatActivity(), AnkoLogger {
|
||||||
inputType = InputType.TYPE_CLASS_TEXT or InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS
|
inputType = InputType.TYPE_CLASS_TEXT or InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS
|
||||||
inputFilters.add(AlphaFilter(Dtmf.DKS_EXTRAS))
|
inputFilters.add(AlphaFilter(Dtmf.DKS_EXTRAS))
|
||||||
} else if (params.type.equals(Dtmf.LINEAR, true)) {
|
} else if (params.type.equals(Dtmf.LINEAR, true)) {
|
||||||
inputType = InputType.TYPE_CLASS_TEXT or InputType.TYPE_TEXT_FLAG_CAP_SENTENCES
|
inputType = InputType.TYPE_CLASS_TEXT or InputType.TYPE_TEXT_FLAG_CAP_WORDS
|
||||||
inputFilters.add(AlphaFilter(Dtmf.LINEAR_EXTRAS))
|
inputFilters.add(AlphaFilter(Dtmf.LINEAR_EXTRAS))
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue