Try to disable autocomplete

This commit is contained in:
Ziver Koc 2017-08-23 09:55:03 +02:00
parent 47e999a862
commit a4d05c11ce

View file

@ -69,7 +69,7 @@ public class ConfigureDialog extends DialogFragment {
input.setLayoutParams(new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.WRAP_CONTENT));
input.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
input.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
// Set previous value
if (savedInstanceState != null && savedInstanceState.containsKey(confParam.getName()))
input.setText(savedInstanceState.getString(confParam.getName()), TextView.BufferType.EDITABLE);