こんにちは私は私のedittextに問題があります。Edittextの最初の文字は自動大文字ではありません
EDITTEXTのXMLは以下の貼り付けられます:
<EditText
android:id="@+id/edttxt_description_taskdescription"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="@dimen/padding_large"
android:layout_marginTop="@dimen/margin_.5x"
android:background="@color/white"
android:lines="2"
android:gravity="top"
android:hint="@string/activity_task_description_name_hint"
android:imeOptions="actionDone"
android:singleLine="false"
android:inputType="textMultiLine|textCapSentences"
android:maxLength="85"
android:textSize="@dimen/text_16pixels" />
問題:私は自動車のEditTextの最初の文字を大文字にしたいが、それは起きていません。助けてください !
注:複数行のEditTextが必要です。
実際にこのコードは、すべての行を大文字にしています。確認してください。大文字の行にすべての単語を入力する必要がありますか? –
android:inputType = "textMultiLine | textCapWords | textCapSentences"のようなinputTypeのtextCapWordsも追加してみてください。 – mubeen
私はちょうどあなたのコードをテストし、それは私のために働く。 EditTextをコードのどこかにプログラム的に変更しますか? – babadaba