coo*_*Boy 13 android android-layout android-xml android-edittext android-5.0-lollipop
我已经android:inputType="textAutoComplete|textCapSentences"在我的xml代码中实现了.当我在kitkat上运行它时,textCapSentence工作正常,但是当在Lollipop设备上运行时,它不起作用.任何人都知道如何解决它.
jap*_*ngh 23
嗨,这是因为在棒棒糖中,如果您在键盘设置中禁用了自动大写,则无法以编程方式启用它.
以下是步骤: -
这样设置
EditText input = (EditText).findViewById(R.id.ID);
input.setInputType(InputType.TYPE_TEXT_FLAG_CAP_SENTENCES);
Run Code Online (Sandbox Code Playgroud)