Try to disable autocomplete
This commit is contained in:
parent
47e999a862
commit
a4d05c11ce
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ public class ConfigureDialog extends DialogFragment {
|
||||||
input.setLayoutParams(new LinearLayout.LayoutParams(
|
input.setLayoutParams(new LinearLayout.LayoutParams(
|
||||||
LinearLayout.LayoutParams.MATCH_PARENT,
|
LinearLayout.LayoutParams.MATCH_PARENT,
|
||||||
LinearLayout.LayoutParams.WRAP_CONTENT));
|
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
|
// Set previous value
|
||||||
if (savedInstanceState != null && savedInstanceState.containsKey(confParam.getName()))
|
if (savedInstanceState != null && savedInstanceState.containsKey(confParam.getName()))
|
||||||
input.setText(savedInstanceState.getString(confParam.getName()), TextView.BufferType.EDITABLE);
|
input.setText(savedInstanceState.getString(confParam.getName()), TextView.BufferType.EDITABLE);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue