我如何在搜索视图中强制写大写



我需要在用户编写时显示大写字母中的所有字母。我正在使用: android:inputType="textCapCharacters"

但是,当我将其推动时,它会变成小写。我需要永久的东西。

在代码中您可以尝试以下操作:

searchView.setInputType(InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS);

希望它有帮助。

只需添加android:textallcaps =" true" xml

示例:

<android.support.v7.internal.widget.CompatTextView
        android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:textAllCaps="true"/>

相关内容

  • 没有找到相关文章

最新更新