HomeSort by relevance Sort by last modified time
    Searched refs:mLayoutInflater (Results 1 - 25 of 53) sorted by null

1 2 3

  /cts/tests/tests/view/src/android/view/cts/
LayoutInflaterTest.java 45 private LayoutInflater mLayoutInflater;
71 mLayoutInflater = (LayoutInflater) mContext
76 mLayoutInflater = null;
77 mLayoutInflater = LayoutInflater.from(mContext);
78 assertNotNull(mLayoutInflater);
79 mLayoutInflater = null;
80 mLayoutInflater = new MockLayoutInflater(mContext);
81 assertNotNull(mLayoutInflater);
83 LayoutInflater layoutInflater = new MockLayoutInflater(mLayoutInflater,
89 mLayoutInflater.setFilter(mFilter)
    [all...]
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/recyclerview/
RvArrayAdapter.java 26 private LayoutInflater mLayoutInflater;
47 if (mLayoutInflater == null) {
48 mLayoutInflater = LayoutInflater.from(viewGroup.getContext());
50 View v = mLayoutInflater.inflate(android.R.layout.simple_list_item_1, viewGroup, false);
  /developers/samples/android/ui/transition/FragmentTransition/Application/src/main/java/com/example/android/fragmenttransition/
MeatAdapter.java 28 private final LayoutInflater mLayoutInflater;
32 mLayoutInflater = inflater;
56 view = mLayoutInflater.inflate(mResourceId, parent, false);
  /developers/samples/android/ui/transition/AdapterTransition/Application/src/main/java/com/example/android/adaptertransition/
MeatAdapter.java 36 private final LayoutInflater mLayoutInflater;
47 mLayoutInflater = inflater;
71 view = mLayoutInflater.inflate(mResourceId, parent, false);
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
ObservableListAdapter.java 36 private final LayoutInflater mLayoutInflater;
44 mLayoutInflater = (resourceId == 0) ? null :
126 convertView = mLayoutInflater.inflate(resourceId, parent, false);
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
CallListAdapter.java 48 private final LayoutInflater mLayoutInflater;
62 mLayoutInflater =
90 convertView = mLayoutInflater.inflate(R.layout.call_list_item, parent, false);
  /packages/apps/Settings/src/com/android/settings/widget/
SlidingTabLayout.java 39 private final LayoutInflater mLayoutInflater;
47 mLayoutInflater = LayoutInflater.from(context);
50 mIndicatorView = mLayoutInflater.inflate(R.layout.sliding_tab_indicator_view, this, false);
128 final TextView tabTitleView = (TextView) mLayoutInflater.inflate(
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallDetailHistoryAdapter.java 45 private final LayoutInflater mLayoutInflater;
57 mLayoutInflater = layoutInflater;
97 ? mLayoutInflater.inflate(R.layout.call_detail_history_item, parent, false)
  /packages/apps/TV/src/com/android/tv/menu/
ItemListRowView.java 118 private final LayoutInflater mLayoutInflater;
125 mLayoutInflater = LayoutInflater.from(context);
199 View view = mLayoutInflater.inflate(getLayoutResId(viewType), parent, false);
MenuView.java 41 private final LayoutInflater mLayoutInflater;
59 mLayoutInflater = LayoutInflater.from(context);
90 MenuRowView view = (MenuRowView) mLayoutInflater.inflate(row.getLayoutResId(), this, false);
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Wearable/src/main/java/com/example/android/xyztouristattractions/ui/
AttractionsGridPagerAdapter.java 67 private LayoutInflater mLayoutInflater;
77 mLayoutInflater = LayoutInflater.from(context);
108 final View view = mLayoutInflater.inflate(
141 CardScrollView cardScrollView = (CardScrollView) mLayoutInflater.inflate(
153 final ActionPage navActionPage = (ActionPage) mLayoutInflater.inflate(
166 final ActionPage openActionPage = (ActionPage) mLayoutInflater.inflate(
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Wearable/src/main/java/com/example/android/xyztouristattractions/ui/
AttractionsGridPagerAdapter.java 67 private LayoutInflater mLayoutInflater;
77 mLayoutInflater = LayoutInflater.from(context);
108 final View view = mLayoutInflater.inflate(
141 CardScrollView cardScrollView = (CardScrollView) mLayoutInflater.inflate(
153 final ActionPage navActionPage = (ActionPage) mLayoutInflater.inflate(
166 final ActionPage openActionPage = (ActionPage) mLayoutInflater.inflate(
  /development/samples/browseable/XYZTouristAttractions/Wearable/src/com.example.android.xyztouristattractions/ui/
AttractionsGridPagerAdapter.java 67 private LayoutInflater mLayoutInflater;
77 mLayoutInflater = LayoutInflater.from(context);
108 final View view = mLayoutInflater.inflate(
141 CardScrollView cardScrollView = (CardScrollView) mLayoutInflater.inflate(
153 final ActionPage navActionPage = (ActionPage) mLayoutInflater.inflate(
166 final ActionPage openActionPage = (ActionPage) mLayoutInflater.inflate(
  /packages/apps/Launcher3/src/com/android/launcher3/widget/
WidgetsListAdapter.java 59 private LayoutInflater mLayoutInflater;
74 mLayoutInflater = LayoutInflater.from(context);
112 WidgetCell widget = (WidgetCell) mLayoutInflater.inflate(
165 ViewGroup container = (ViewGroup) mLayoutInflater.inflate(
  /packages/apps/Contacts/src/com/android/contacts/editor/
CompactPhotoSelectionFragment.java 158 private final LayoutInflater mLayoutInflater;
162 mLayoutInflater = LayoutInflater.from(mContext);
199 return mLayoutInflater.inflate(R.layout.take_a_photo_button, /* root =*/ null);
206 return mLayoutInflater.inflate(R.layout.all_photos_button, /* root =*/ null);
217 photoItemView = mLayoutInflater.inflate(
  /frameworks/support/design/src/android/support/design/internal/
NavigationMenuPresenter.java 65 private LayoutInflater mLayoutInflater;
86 mLayoutInflater = LayoutInflater.from(context);
96 mMenuView = (NavigationMenuView) mLayoutInflater.inflate(
101 mHeaderLayout = (LinearLayout) mLayoutInflater
197 View view = mLayoutInflater.inflate(res, mHeaderLayout, false);
388 return new NormalViewHolder(mLayoutInflater, parent, mOnClickListener);
390 return new SubheaderViewHolder(mLayoutInflater, parent);
392 return new SeparatorViewHolder(mLayoutInflater, parent);
  /frameworks/base/core/java/android/accounts/
ChooseAccountActivity.java 156 private LayoutInflater mLayoutInflater;
162 mLayoutInflater = (LayoutInflater) context.getSystemService(
171 convertView = mLayoutInflater.inflate(R.layout.choose_account_row, null);
ChooseAccountTypeActivity.java 172 private LayoutInflater mLayoutInflater;
179 mLayoutInflater = (LayoutInflater) context.getSystemService(
188 convertView = mLayoutInflater.inflate(R.layout.choose_account_row, null);
  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/util/
SortedListActivity.java 75 final LayoutInflater mLayoutInflater;
77 mLayoutInflater = layoutInflater;
119 mLayoutInflater.inflate(R.layout.sorted_list_item_view, parent, false)) {
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupBrowseListAdapter.java 42 private final LayoutInflater mLayoutInflater;
52 mLayoutInflater = LayoutInflater.from(context);
156 result = mLayoutInflater.inflate(R.layout.group_browse_list_item, parent, false);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
AccountFilterActivity.java 223 private final LayoutInflater mLayoutInflater;
229 mLayoutInflater = (LayoutInflater) context.getSystemService
256 view = (ContactListFilterView) mLayoutInflater.inflate(
  /packages/apps/Launcher3/src/com/android/launcher3/
PageIndicator.java 34 private LayoutInflater mLayoutInflater;
71 mLayoutInflater = LayoutInflater.from(context);
166 (PageIndicatorMarker) mLayoutInflater.inflate(R.layout.page_indicator_marker,
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
UsbModeChooserActivity.java 62 private LayoutInflater mLayoutInflater;
85 mLayoutInflater = LayoutInflater.from(this);
135 View v = mLayoutInflater.inflate(R.layout.restricted_radio_with_summary, container, false);
  /packages/apps/Settings/src/com/android/settings/nfc/
NfcPaymentPreference.java 48 private final LayoutInflater mLayoutInflater;
61 mLayoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
170 convertView = mLayoutInflater.inflate(
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarInflaterView.java 60 protected LayoutInflater mLayoutInflater;
82 mLayoutInflater = LayoutInflater.from(mContext);
111 mRot0 = (FrameLayout) mLayoutInflater.inflate(R.layout.navigation_layout, this, false);
114 mRot90 = (FrameLayout) mLayoutInflater.inflate(R.layout.navigation_layout_rot90, this,
241 LayoutInflater inflater = landscape ? mLandscapeInflater : mLayoutInflater;

Completed in 800 milliseconds

1 2 3