HomeSort by relevance Sort by last modified time
    Searched refs:mCurrentView (Results 1 - 9 of 9) sorted by null

  /packages/apps/Calculator/src/com/android/calculator2/
PanelSwitcher.java 34 private int mCurrentView;
56 mCurrentView = 0;
84 boolean changed = mCurrentView != current;
85 mCurrentView = current;
94 mChildren[i].setVisibility(i==mCurrentView ? View.VISIBLE : View.GONE);
137 if (mCurrentView < mChildren.length - 1 && mPreviousMove != LEFT) {
138 mChildren[mCurrentView+1].setVisibility(View.VISIBLE);
139 mChildren[mCurrentView+1].startAnimation(inLeft);
140 mChildren[mCurrentView].startAnimation(outLeft);
141 mChildren[mCurrentView].setVisibility(View.GONE)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StatePanelTrack.java 44 private StateView mCurrentView;
197 mCurrentView = view;
198 if (mCurrentSelectedView == mCurrentView) {
209 mCurrentSelectedView = mCurrentView;
217 if (mCurrentView != null) {
225 if (mCurrentView == null) {
240 float alpha = 1.0f - (Math.abs(translation) / mCurrentView.getHeight());
243 alpha = 1.0f - (Math.abs(translation) / mCurrentView.getWidth());
244 mCurrentView.setTranslationX(translation);
246 mCurrentView.setTranslationY(translation)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarView.java 70 View mCurrentView = null;
182 final int vw = mCurrentView.getWidth();
183 final int vh = mCurrentView.getHeight();
265 return mCurrentView;
269 return mCurrentView.findViewById(R.id.recent_apps);
273 return mCurrentView.findViewById(R.id.menu);
277 return mCurrentView.findViewById(R.id.back);
281 return mCurrentView.findViewById(R.id.home);
286 return mCurrentView.findViewById(R.id.search_light);
291 return mCurrentView.findViewById(R.id.camera_button)
    [all...]
  /frameworks/base/core/java/android/widget/
TabHost.java 63 private View mCurrentView = null;
103 mCurrentView = null;
208 if (mCurrentView != null && (!mCurrentView.hasFocus() || mCurrentView.isFocused())) {
280 return mCurrentView;
331 && (mCurrentView != null)
332 && (mCurrentView.isRootNamespace())
333 && (mCurrentView.hasFocus())) {
362 && mCurrentView.findFocus().focusSearch(directionShouldChangeFocus) == null)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
MoveGesture.java 62 private CanvasViewInfo mCurrentView;
75 * It can differ from mCurrentView, typically because a terminal View doesn't
259 mLeaveView = mCurrentView;
289 mCurrentView = mLeaveView;
641 vi = mCurrentView;
658 if (vi != mCurrentView) {
660 // Note that either mCurrentView or vi can be null.
663 // vi is null but mCurrentView is not, no view is a target anymore
744 mCurrentView = vi;
786 if (mCurrentView != null && mTargetNode != null)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
AllInOneActivity.java 114 private int mCurrentView;
596 outState.putInt(BUNDLE_KEY_RESTORE_VIEW, mCurrentView);
597 if (mCurrentView == ViewType.EDIT) {
599 } else if (mCurrentView == ViewType.AGENDA) {
698 if (mCurrentView == ViewType.EDIT || mBackToPreviousView) {
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DatePickerDialog.java 95 private int mCurrentView = UNINITIALIZED;
182 outState.putInt(KEY_CURRENT_VIEW, mCurrentView);
184 if (mCurrentView == MONTH_AND_DAY_VIEW) {
186 } else if (mCurrentView == YEAR_VIEW) {
297 if (mCurrentView != viewIndex) {
301 mCurrentView = viewIndex;
317 if (mCurrentView != viewIndex) {
321 mCurrentView = viewIndex;
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DownloadList.java 109 private ListView mCurrentView;
460 return mCurrentView;
474 mCurrentView = mSizeOrderedListView;
480 mCurrentView = mDateOrderedListView;
488 return mCurrentView;
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DirectoryFragment.java 98 private AbsListView mCurrentView;
405 mCurrentView = mGridView;
412 mCurrentView = mListView;
460 final SparseBooleanArray checked = mCurrentView.getCheckedItemPositions();
514 mCurrentView.setItemChecked(position, false);
519 .getString(R.string.mode_selected_count, mCurrentView.getCheckedItemCount()));
    [all...]

Completed in 150 milliseconds