We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
inputType
1 parent ff19c33 commit b5e6349Copy full SHA for b5e6349
edittext/src/main/kotlin/androidx/preference/EditTextPreferencePlus.kt
@@ -54,7 +54,7 @@ class EditTextPreferencePlus @JvmOverloads constructor(
54
typedArray.getBoolean(R.styleable.EditTextPreferencePlus_formatSummary, false)
55
inputType = typedArray.getInt(
56
R.styleable.EditTextPreferencePlus_android_inputType,
57
- InputType.TYPE_NULL
+ InputType.TYPE_CLASS_TEXT or InputType.TYPE_TEXT_FLAG_MULTI_LINE
58
)
59
hint = typedArray.getString(R.styleable.EditTextPreferencePlus_android_hint)
60
mSummary = typedArray.getString(R.styleable.Preference_summary)
0 commit comments