Home | History | Annotate | Download | only in app

Lines Matching refs:fieldTextItem

145             mTextPaint.color = if (line.fieldTextItem.focused) mFocusedColor else mUnfocusedColor
147 val writeText = line.fieldTextItem.text.toString() + "]"
187 get() = mUsernameLine.fieldTextItem.text
190 get() = mPasswordLine.fieldTextItem.text
202 mItems.put(line.fieldTextItem.id, line.fieldTextItem)
225 var fieldTextItem: Item
229 this.fieldTextItem = Item(this, ++nextId, hints, View.AUTOFILL_TYPE_TEXT, text, true, sanitized)
233 fieldTextItem.focused = focused
236 Log.d(TAG, "focus gained on " + fieldTextItem.id + "; absBounds=" + absBounds)
237 mAfm.notifyViewEntered(this@CustomVirtualView, fieldTextItem.id, absBounds)
239 Log.d(TAG, "focus lost on " + fieldTextItem.id)
240 mAfm.notifyViewExited(this@CustomVirtualView, fieldTextItem.id)
252 Log.v(TAG, "getAbsCoordinates() for " + fieldTextItem.id + ": bounds=" + bounds
258 fieldTextItem.text = " "
262 return "Label: " + labelItem + " Text: " + fieldTextItem + " Focused: " +
263 fieldTextItem.focused