Searched defs:mCursorDrawable (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DEditor.java180 final Drawable[] mCursorDrawable = new Drawable[2]; field in class:Editor
181 int mCursorCount; // Current number of used mCursorDrawable: 0 (resource=0), 1 or 2 (split)
1435 mCursorDrawable[i].draw(canvas);
1683 if (mCursorDrawable[cursorIndex] == null)
1684 mCursorDrawable[cursorIndex] = mTextView.getResources().getDrawable(
1688 mCursorDrawable[cursorIndex].getPadding(mTempRect);
1689 final int width = mCursorDrawable[cursorIndex].getIntrinsicWidth();
1692 mCursorDrawable[cursorIndex].setBounds(left, top - mTempRect.top, left + width,

Completed in 25 milliseconds