Home | History | Annotate | Download | only in app

Lines Matching refs:fieldTextItem

153             mTextPaint.setColor(line.fieldTextItem.focused ? mFocusedColor : mUnfocusedColor);
155 String writeText = line.fieldTextItem.text + "]";
196 return mUsernameLine.fieldTextItem.text;
200 return mPasswordLine.fieldTextItem.text;
213 mItems.put(line.fieldTextItem.id, line.fieldTextItem);
253 private Item fieldTextItem;
259 this.fieldTextItem = new Item(this, ++nextId, hints, AUTOFILL_TYPE_TEXT, text, true, sanitized);
263 fieldTextItem.focused = focused;
266 Log.d(TAG, "focus gained on " + fieldTextItem.id + "; absBounds=" + absBounds);
267 mAfm.notifyViewEntered(CustomVirtualView.this, fieldTextItem.id, absBounds);
269 Log.d(TAG, "focus lost on " + fieldTextItem.id);
270 mAfm.notifyViewExited(CustomVirtualView.this, fieldTextItem.id);
281 Log.v(TAG, "getAbsCoordinates() for " + fieldTextItem.id + ": bounds=" + bounds
287 fieldTextItem.text = " ";
292 return "Label: " + labelItem + " Text: " + fieldTextItem + " Focused: " +
293 fieldTextItem.focused;