Searched refs:mSavedScrollPosition (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Mms/src/com/android/mms/ui/
H A DComposeMessageActivity.java316 private int mSavedScrollPosition = -1; // we save the ListView's scroll position in onPause(), field in class:ComposeMessageActivity
2303 mSavedScrollPosition = Integer.MAX_VALUE;
2305 mSavedScrollPosition = mMsgListView.getFirstVisiblePosition();
2308 Log.v(TAG, "onPause: mSavedScrollPosition=" + mSavedScrollPosition);
4105 } else if (mSavedScrollPosition != -1) {
4106 // mSavedScrollPosition is set when this activity pauses. If equals maxint,
4111 if (mSavedScrollPosition == Integer.MAX_VALUE) {
4117 mSavedScrollPosition = -1;
4122 newSelectionPos = mSavedScrollPosition;
[all...]

Completed in 39 milliseconds