gpt4 book ai didi

java - 禁用用户输入的自动完成(在 Java Android 应用程序内)

转载 作者:行者123 更新时间:2023-12-02 08:46:43 25 4
gpt4 key购买 nike

我想在手机上禁用自动更正和自动完成(来自键盘的单词建议)在我正在开发的应用程序内。它是一个词汇训练器,所以我希望用户无需使用任何工具即可输入内容。有没有办法用Java做到这一点?一些相关的代码 fragment :

用户交互:

    public void onClick(View view) {
TextView textView = (TextView) getView().findViewById(R.id.textview);
final String answer = textView.getText().toString();
passData(answer);
}

和 xml:

   <EditText
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toTopOf="@id/button_first"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:background="#CCCCCC"
android:ems="10"
android:inputType="textPersonName" >

<requestFocus />
</EditText>

附注我是应用程序开发新手,因此您可能会在上面的代码中看到一些缺陷 - 在这种情况下,请告诉我!

最佳答案

如果将其添加到 EditText 中,它会起作用吗:

android:inputType="text|textNoSuggestions"

而不是:

android:inputType="textPersonName"

所以就变成了这样:

<EditText
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toTopOf="@id/button_first"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:background="#CCCCCC"
android:ems="10"
android:inputType="text|textNoSuggestions" >

<requestFocus />
</EditText>

关于java - 禁用用户输入的自动完成(在 Java Android 应用程序内),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61031742/

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