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

/frameworks/opt/mailcommon/java/com/android/mailcommon/
H A DMultiAdapterSpinner.java61 private int mSelectedPosition = -1; field in class:MultiAdapterSpinner
134 mSelectedPosition = globalPosition;
158 mPopup.setSelection(mSelectedPosition);
165 if (position != mSelectedPosition) {
170 mSelectedPosition = position;
/frameworks/base/core/java/android/widget/
H A DAdapterView.java162 int mSelectedPosition = INVALID_POSITION; field in class:AdapterView
817 mSelectedPosition = INVALID_POSITION;
870 if (mSelectedPosition != ListView.INVALID_POSITION && isShown() && !isInTouchMode()) {
1006 mSelectedPosition = INVALID_POSITION;
1016 if ((mSelectedPosition != mOldSelectedPosition) || (mSelectedRowId != mOldSelectedRowId)) {
1018 mOldSelectedPosition = mSelectedPosition;
1123 * Utility to keep mSelectedPosition and mSelectedRowId in sync
1127 mSelectedPosition = position;
1133 * @param position Intended value for mSelectedPosition the next time we go
1155 if (mSelectedPosition >
[all...]
H A DListView.java560 if ((mSelectedPosition > 0) || (rectTopWithinChild > fadingEdge)) {
570 if ((mSelectedPosition < mItemCount - 1)
671 boolean selected = pos == mSelectedPosition;
704 boolean selected = pos == mSelectedPosition;
727 mFirstPosition = Math.min(mFirstPosition, mSelectedPosition);
737 * Put mSelectedPosition in the middle of the screen and then build up and
738 * down from there. This method forces mSelectedPosition to the center.
804 final int selectedPosition = mSelectedPosition;
929 final int selectedPosition = mSelectedPosition;
991 fillUp(mSelectedPosition
2651 private int mSelectedPosition; field in class:ListView.ArrowScrollFocusResult
[all...]

Completed in 63 milliseconds