gpt4 book ai didi

android - 如何设置多个标志 xml android

转载 作者:行者123 更新时间:2023-11-29 00:32:39 25 4
gpt4 key购买 nike

我想知道如何以及是否可以为 android 布局设置多个标志。

例如,我想使用 TextView 标志为 TYPE_TEXT_FLAG_AUTO_COMPLETE 的自动完成 TextView

TYPE_TEXT_FLAG_AUTO_CORRECT

最佳答案

使用|

所以在你的情况下你想要

android:inputType = "textAutoCorrect|textAutoComplete"

EditText 示例

<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType = "textAutoCorrect|textAutoComplete">

有关您可以在 inputType 中指定的标志的完整列表,请参阅 documentation .

关于android - 如何设置多个标志 xml android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14487730/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com