I'm working on a little personal todo list app and so far everything has been working quite well. There is one little quirk I'd like to figure out. Whenever I go to add a new item, I have a Dialog with an EditText view showing inside. When I select the EditText view, the keyboard comes up to enter text, as it should. In most applications, the default seems to be that the shift key is held for the first letter... although it does not do this for my view. There has to be a simple way to fix, but I've searched the reference repeatedly and cannot find it. I'm thinking there has to be an xml attribute for the reference loaded by the Adapter, but I can't find out what it is.


当前回答

testEditText.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_CAP_WORDS);   

或者android:inputType=" textcapsentence "将只工作,如果你的设备键盘自动大写设置启用。

其他回答

在XML编辑文本中应用以下行。

android:inputType="textCapSentences|textMultiLine"

它还允许多线支持。

对于EditText中的资本化,您可以选择以下两种输入类型:

android:inputType=“textCapSentences” android:inputType=“textCapWords”

textCapSentences 这将使每个句子中第一个单词的第一个字母成为大写字母。

textCapWords 这将使每个单词的第一个字母作为大写字母。

如果你想要两个属性都使用|符号

android:inputType="textCapSentences|textCapWords"

我也遇到了同样的问题,只是分享了我的发现。可能会帮助你和其他人…

在你的布局上试试这个。在EditText中添加下面的行。

android:inputType="textCapWords|textCapSentences"

对我来说很好..希望它也适用于你…

在XML和JAVA文件中设置输入类型,

在XML中,

android:inputType=“textMultiLine|textCapSentences”

它也将允许多行和在JAVA文件,

edittext.setRawInputType(InputType.TYPE_CLASS_TEXT|InputType.TYPE_TEXT_FLAG_CAP_SENTENCES);

确保你键盘的自动大写设置是启用的。

如果你想在每个单词的首字母大写,然后使用android:inputType="textCapWords"

为了更好地理解

 <EditText
    android:id="@+id/edt_description"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:inputType="textCapWords"/>

如果你每个句子都用大写的单词,那就用它。 android:inputType=" textcapsentence "这一行在你的xml。我指的是在你的EditText中。

为了更好地理解

<EditText
    android:id="@+id/edt_description"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:inputType="textCapSentences"/>