gpt4 book ai didi

android - 如何删除我的编辑文本上的 ` frequently used email ` toast?

转载 作者:行者123 更新时间:2023-12-03 20:48:56 24 4
gpt4 key购买 nike

enter image description here
正如您从上图中看到的那样,有一个像 toast “常用电子邮件”这样的东西。每当我完成输入电子邮件时,就会出现该 toast ,我认为我不是以编程方式制作的。似乎它只出现在 Android 10 上,在我的 Android Lollipop 中没有出现 toast 。我将小米红米 Note 7 用于我的 Android 10。
我想从我的编辑文本中删除那个 toast 。怎么做 ?
这是edittext的XML

<com.google.android.material.textfield.TextInputLayout
android:id="@+id/email_login_textInputLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginTop="32dp"
android:layout_marginEnd="16dp"
android:theme="@style/TextInputLayoutAppearance"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView_back_button">


<com.google.android.material.textfield.TextInputEditText
android:id="@+id/email_textView_login"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:hint="@string/email"
android:inputType="textEmailAddress" />

</com.google.android.material.textfield.TextInputLayout>
在 Kotlin 代码中,我只有这个监听器
        emailTextView.setOnFocusChangeListener { v, hasFocus ->

val emailText = emailTextView.text.toString()

if (!emailText.isEmpty()) {

if (!hasFocus && (!emailText.contains("@") || (!emailText.contains(".")))) {
emailTextInputLayout.isErrorEnabled = true
emailTextInputLayout.error = "wrong email format"
} else if (!hasFocus) {
emailTextInputLayout.isErrorEnabled = false
emailTextInputLayout.error = ""
}

}


}
我试图更改/删除 android:inputType="textEmailAddress" ,但是那个 toast 还是出现了

最佳答案

我也面临这个问题,并通过添加以下内容解决了 -

  android:inputType="textNoSuggestions|textEmailAddress"
textNoSuggestions 将阻止“常用电子邮件” toast ,并且由于 EditText 用于电子邮件地址,因此您还需要添加 textEmailAddress

关于android - 如何删除我的编辑文本上的 ` frequently used email ` toast?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64060463/

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