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

/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DMultiLineTexture.java31 private final Layout mLayout; field in class:MultiLineTexture
35 mLayout = layout;
50 mLayout.draw(canvas);
/packages/apps/Settings/src/com/android/settings/notification/
H A DZenModeScheduleDaysSelection.java38 private final LinearLayout mLayout; field in class:ZenModeScheduleDaysSelection
42 mLayout = new LinearLayout(mContext);
45 mLayout.setPadding(hPad, 0, hPad, 0);
46 addView(mLayout);
52 mLayout.setOrientation(LinearLayout.VERTICAL);
70 mLayout.addView(checkBox);
/packages/apps/Settings/tests/robotests/src/com/android/settings/widget/
H A DAspectRatioFrameLayoutTest.java36 private AspectRatioFrameLayout mLayout; field in class:AspectRatioFrameLayoutTest
45 mLayout = new AspectRatioFrameLayout(mContext);
50 mLayout.measure(widthMeasureSpec, heightMeasureSpec);
52 assertThat(mLayout.getMeasuredWidth()).isEqualTo(50);
53 assertThat(mLayout.getMeasuredHeight()).isEqualTo(50);
58 mLayout = new AspectRatioFrameLayout(mContext);
63 mLayout.measure(widthMeasureSpec, heightMeasureSpec);
65 assertThat(mLayout.getMeasuredWidth()).isEqualTo(100);
66 assertThat(mLayout.getMeasuredHeight()).isEqualTo(100);
71 mLayout
[all...]
H A DHotspotApBandSelectionPreferenceTest.java59 private View mLayout; field in class:HotspotApBandSelectionPreferenceTest
75 mLayout = inflater.inflate(R.layout.hotspot_ap_band_selection_dialog,
82 mPreference.onBindDialogView(mLayout);
91 mPreference.onBindDialogView(mLayout);
105 mPreference.onBindDialogView(mLayout);
110 mPreference.onBindDialogView(mLayout);
121 mPreference.onBindDialogView(mLayout);
136 mPreference.onBindDialogView(mLayout);
146 mPreference.onBindDialogView(mLayout);
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/tests/
H A DLayoutTestsBase.java42 private LayoutBase mLayout; field in class:LayoutTestsBase
51 mLayout = getLayout();
52 mSubtype = getSubtype(mLayout.getLocale(), mLayout.getName());
135 final ExpectedKey[][] expectedKeyboard = mLayout.getLayout(isPhone(), elementId);
/packages/apps/Car/Settings/src/com/android/car/settings/common/
H A DBaseFragment.java84 protected int mLayout; field in class:BaseFragment
149 mLayout = getArguments().getInt(EXTRA_LAYOUT);
188 return inflater.inflate(mLayout, container, false);
/packages/apps/DocumentsUI/src/com/android/documentsui/selection/demo/
H A DSelectionDemoActivity.java67 private GridLayoutManager mLayout; field in class:SelectionDemoActivity
79 mLayout = new GridLayoutManager(this, mColumnCount);
80 mRecView.setLayoutManager(mLayout);
244 mLayout.setSpanCount(mColumnCount);
270 mLayout.setSpanCount(++mColumnCount);
274 mLayout.setSpanCount(--mColumnCount);
/packages/experimental/KBars/app/src/main/java/js/kbars/
H A DFitSystemWindowsActivity.java29 private LinearLayout mLayout; field in class:FitSystemWindowsActivity
124 append(sb, "vis", FitSystemWindowsActivity.this.mLayout.getSystemUiVisibility());
150 this.mLayout = new LinearLayout(this.mContext) {
157 this.mLayout.setOrientation(1);
159 this.mLayout.addView(new FlagCheckBox(this.mContext, flag));
161 this.mLayout.addView(new FlagSetButton(this.mContext));
162 LinearLayout linearLayout = this.mLayout;
166 this.mLayout.setOnSystemUiVisibilityChangeListener(new OnSystemUiVisibilityChangeListener() {
171 this.mLayout.setPadding(0, 146, 0, 0);
172 setContentView(this.mLayout);
[all...]
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DAlbumDataAdapter.java44 private final int mLayout; field in class:AlbumDataAdapter
52 mLayout = resource;
85 item = mInflater.inflate(mLayout, parent, false);
H A DSectionedAlbumDataAdapter.java39 private final int mLayout; field in class:SectionedAlbumDataAdapter
45 mLayout = headerLayout;
182 item = mInflater.inflate(mLayout, parent, false);
/packages/apps/Camera2/src/com/android/camera/app/
H A DFilmstripBottomPanel.java42 private final ViewGroup mLayout; field in class:FilmstripBottomPanel
59 mLayout = bottomControlsLayout;
60 mMiddleFiller = mLayout.findViewById(R.id.filmstrip_bottom_control_middle_filler);
61 mControlLayout = mLayout.findViewById(R.id.bottom_control_panel);
92 mLayout.setVisibility(View.VISIBLE);
94 mLayout.setVisibility(View.INVISIBLE);
190 mEditButton = (ImageButton) mLayout.findViewById(R.id.filmstrip_bottom_control_edit);
206 mViewButton = (ExternalViewerButton) mLayout.findViewById(
219 mDeleteButton = (ImageButton) mLayout.findViewById(R.id.filmstrip_bottom_control_delete);
231 mShareButton = (ImageButton) mLayout
[all...]
/packages/apps/DocumentsUI/src/com/android/documentsui/
H A DDrawerController.java103 private DrawerLayout mLayout; field in class:DrawerController.RuntimeDrawerController
116 mLayout = layout;
120 mLayout.setDrawerListener(this);
167 mLayout.openDrawer(mDrawer);
169 mLayout.closeDrawer(mDrawer);
175 return mLayout.isDrawerOpen(mDrawer);
/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/text/
H A DSubtitleView.java71 private StaticLayout mLayout; field in class:SubtitleView
210 final StaticLayout layout = this.mLayout;
252 mLayout =
260 final StaticLayout layout = this.mLayout;
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DFolderSelectorAdapter.java92 private final int mLayout; field in class:FolderSelectorAdapter
98 mLayout = layout;
105 mLayout = layout;
314 view = mInflater.inflate(mLayout, parent, false);
H A DTwoPaneController.java64 private TwoPaneLayout mLayout; field in class:TwoPaneController
132 sb.append(" mLayout=");
133 sb.append(mLayout);
143 !mLayout.shouldShowPreviewPanel();
194 return !mLayout.isConversationListCollapsed();
209 mLayout = (TwoPaneLayout) mActivity.findViewById(R.id.two_pane_activity);
211 if (mLayout == null) {
213 LogUtils.wtf(LOG_TAG, "mLayout is null!");
216 mLayout.setController(this);
233 mViewMode.addListener(mLayout);
[all...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
H A DMockKeyboardSwitcher.java51 private int mLayout = MockConstants.ALPHABET_UNSHIFTED; field in class:MockKeyboardSwitcher
63 return mLayout;
90 mLayout = MockConstants.ALPHABET_UNSHIFTED;
95 mLayout = MockConstants.ALPHABET_MANUAL_SHIFTED;
100 mLayout = MockConstants.ALPHABET_AUTOMATIC_SHIFTED;
105 mLayout = MockConstants.ALPHABET_SHIFT_LOCKED;
110 mLayout = MockConstants.ALPHABET_SHIFT_LOCK_SHIFTED;
115 mLayout = MockConstants.SYMBOLS_UNSHIFTED;
120 mLayout = MockConstants.SYMBOLS_SHIFTED;
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
H A DSelectCalendarsSimpleAdapter.java61 private int mLayout; field in class:SelectCalendarsSimpleAdapter
98 mLayout = layout;
227 view = mInflater.inflate(mLayout, parent, false);
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
H A DDirectoryFragment.java173 private GridLayoutManager mLayout; field in class:DirectoryFragment
307 mLayout = new GridLayoutManager(getContext(), mColumnCount) {
317 mLayout.setSpanSizeLookup(lookup);
319 mRecView.setLayoutManager(mLayout);
549 if (mLayout != null) {
550 mLayout.setSpanCount(mColumnCount);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DSlotView.java72 private final Layout mLayout = new Layout(); field in class:SlotView
101 mRenderer.onSlotSizeChanged(mLayout.mSlotWidth, mLayout.mSlotHeight);
107 int slotCount = mLayout.mSlotCount;
111 Rect rect = mLayout.getSlotRect(index, mTempRect);
119 Rect rect = mLayout.getSlotRect(index, mTempRect);
139 position = Utils.clamp(position, 0, mLayout.getScrollLimit());
145 mLayout.setSlotSpec(spec);
161 (mLayout.getVisibleStart() + mLayout
[all...]
/packages/apps/Settings/src/com/android/settings/password/
H A DChooseLockPassword.java208 private GlifLayout mLayout; field in class:ChooseLockPassword.ChooseLockPasswordFragment
373 mLayout = (GlifLayout) view;
390 mLayout.setIcon(getActivity().getDrawable(R.drawable.ic_fingerprint_header));
452 mLayout.setHeaderText(title);
572 mLayout.announceForAccessibility(mLayout.getHeaderText());
915 if (!TextUtils.isEmpty(mLayout.getHeaderText())
916 && mLayout.getHeaderText().toString().equals(text)) {
919 mLayout.setHeaderText(text);

Completed in 761 milliseconds