In my application , i have to submit Username and Password. But, it shows some suggestions while entering data. i am using the following in my 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"
/>
So, please guide me how to stop suggesstions.