2

在我的应用程序中,我必须提交用户名和密码。但是,它在输入数据时显示了一些建议。我在我的 xml 中使用以下内容。

<EditText    
        android:id="@+id/edtpass" 
        android:drawableLeft="@drawable/login_password_icon"
        android:drawablePadding="15dp" 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/edt_bg"
        android:textColorHint="#FFFFFF"
        android:hint="@string/password"
        android:inputType="textNoSuggestions"  
        android:layout_marginTop="20dp"
        android:layout_gravity="center"
        android:padding="5dp"
        android:imeOptions="actionDone"
        android:singleLine="true"
        android:textColor="#ffffff"
        android:textCursorDrawable="@null"
        />

在此处输入图像描述

所以,请指导我如何停止建议。

4

2 回答 2

0

在布局 XML 中,将以下属性添加到您的EditText:

android:inputType="textFilter"

检查这个http://developer.android.com/reference/android/widget/TextView.html#attr_android%3ainputType

于 2014-08-22T12:03:45.447 回答
0

在编辑文本中:

android:inputType="text|textNoSuggestions"
于 2014-08-22T12:04:49.357 回答