Searched refs:fieldTextItem (Results 1 – 1 of 1) sorted by relevance
/developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/app/ |
D | CustomVirtualView.kt | 46 get() = usernameLine.fieldTextItem.text 48 get() = passwordLine.fieldTextItem.text 125 textPaint.color = if (it.fieldTextItem.focused) focusedColor else unfocusedColor in onDraw() 127 val writeText = it.fieldTextItem.text.toString() + "]" in onDraw() 173 put(it.fieldTextItem.id, it.fieldTextItem) in addLine() 202 …var fieldTextItem: Item = Item(this, ++nextId, hints, View.AUTOFILL_TYPE_TEXT, text, true, sanitiz… variable 205 fieldTextItem.focused = focused in changeFocus() 208 Log.d(TAG, "focus gained on " + fieldTextItem.id + "; absBounds=" + absBounds) in changeFocus() 209 … autofillManager.notifyViewEntered(this@CustomVirtualView, fieldTextItem.id, absBounds) in changeFocus() 211 Log.d(TAG, "focus lost on " + fieldTextItem.id) in changeFocus() [all …]
|