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

  /packages/apps/Launcher3/src/com/android/launcher3/notification/
NotificationItemView.java 50 private final NotificationMainView mMainView;
70 mMainView = container.findViewById(R.id.main_view);
77 mSwipeDetector = new SwipeDetector(mContext, mMainView, HORIZONTAL);
79 mMainView.setSwipeDetector(mSwipeDetector);
104 mContainer.removeView(mMainView);
132 sTempRect.set(mMainView.getLeft(), mMainView.getTop(),
133 mMainView.getRight(), mMainView.getBottom());
142 if (mMainView.getNotificationInfo() == null)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StatePanel.java 36 private LinearLayout mMainView;
47 mMainView = (LinearLayout) inflater.inflate(R.layout.filtershow_state_panel_new, null);
49 View panel = mMainView.findViewById(R.id.listStates);
52 mToggleVersionsPanel = (ImageButton) mMainView.findViewById(R.id.toggleVersionsPanel);
67 return mMainView;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorPanel.java 40 private LinearLayout mMainView;
68 if (mMainView != null) {
69 if (mMainView.getParent() != null) {
70 ViewGroup parent = (ViewGroup) mMainView.getParent();
71 parent.removeView(mMainView);
74 return mMainView;
76 mMainView = (LinearLayout) inflater.inflate(R.layout.filtershow_editor_panel, null);
78 View actionControl = mMainView.findViewById(R.id.panelAccessoryViewList);
79 View editControl = mMainView.findViewById(R.id.controlArea);
80 ImageButton cancelButton = (ImageButton) mMainView.findViewById(R.id.cancelFilter)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
MainPanel.java 37 private LinearLayout mMainView;
81 if (mMainView != null) {
82 if (mMainView.getParent() != null) {
83 ViewGroup parent = (ViewGroup) mMainView.getParent();
84 parent.removeView(mMainView);
93 mMainView = (LinearLayout) inflater.inflate(
96 looksButton = (ImageButton) mMainView.findViewById(R.id.fxButton);
97 bordersButton = (ImageButton) mMainView.findViewById(R.id.borderButton);
98 geometryButton = (ImageButton) mMainView.findViewById(R.id.geometryButton);
99 filtersButton = (ImageButton) mMainView.findViewById(R.id.colorsButton)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/info/
InfoPanel.java 44 private LinearLayout mMainView;
69 mMainView = (LinearLayout) inflater.inflate(
72 mImageThumbnail = (ImageView) mMainView.findViewById(R.id.imageThumbnail);
76 mImageName = (TextView) mMainView.findViewById(R.id.imageName);
77 mImageSize = (TextView) mMainView.findViewById(R.id.imageSize);
78 mExifData = (TextView) mMainView.findViewById(R.id.exifData);
79 TextView exifLabel = (TextView) mMainView.findViewById(R.id.exifLabel);
81 HistogramView histogramView = (HistogramView) mMainView.findViewById(R.id.histogramView);
138 return mMainView;
  /development/samples/SpellChecker/HelloSpellChecker/src/com/example/android/hellospellchecker/
HelloSpellCheckerActivity.java 36 private TextView mMainView;
44 mMainView = (TextView)findViewById(R.id.main);
124 mMainView.append(sb.toString());
154 mMainView.append(sb.toString());
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
CommonControllerOverlay.java 60 protected View mMainView;
201 mMainView = view;
202 mErrorView.setVisibility(mMainView == mErrorView ? View.VISIBLE : View.INVISIBLE);
203 mLoadingView.setVisibility(mMainView == mLoadingView ? View.VISIBLE : View.INVISIBLE);
205 mMainView == mPlayPauseReplayView ? View.VISIBLE : View.INVISIBLE);
288 if (mMainView != null) {
289 layoutCenteredView(mMainView, 0, 0, w, h);
  /development/samples/training/threadsample/src/com/example/android/threadsample/
DisplayActivity.java 45 View mMainView;
96 mMainView.setSystemUiVisibility(flag);
168 mMainView = getLayoutInflater().inflate(R.layout.fragmenthost, null);
171 setContentView(mMainView);
282 mMainView = null;
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
GuidedActionsStylist.java 399 ViewGroup mMainView;
445 mMainView = (ViewGroup) inflater.inflate(onProvideLayoutId(), container, false);
446 mContentView = mMainView.findViewById(mButtonActions ? R.id.guidedactions_content2 :
448 mBgView = mMainView.findViewById(mButtonActions ? R.id.guidedactions_list_background2 :
450 if (mMainView instanceof VerticalGridView) {
451 mActionsGridView = (VerticalGridView) mMainView;
453 mActionsGridView = (VerticalGridView) mMainView.findViewById(mButtonActions
461 mSubActionsGridView = (VerticalGridView) mMainView.findViewById(
463 mSubActionsBackground = mMainView.findViewById(
471 Context ctx = mMainView.getContext()
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
SelectFromListWizardFragment.java 432 private View mMainView;
497 mMainView = inflater.inflate(R.layout.account_content_area, container, false);
499 final ViewGroup descriptionArea = (ViewGroup) mMainView.findViewById(R.id.description);
503 final ViewGroup actionArea = (ViewGroup) mMainView.findViewById(R.id.action);
566 return mMainView;
605 mMainView.getApplicationWindowToken(), 0);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
DefaultSoftKeyboard.java 162 protected BaseInputView mMainView;
618 mMainView = (BaseInputView) parent.getLayoutInflater().inflate(R.layout.keyboard_default_main, null);
623 mMainView.addView(mSubView);
626 mMainView.addView(mKeyboardView);
629 return mMainView;
709 return mMainView;
    [all...]

Completed in 252 milliseconds