HomeSort by relevance Sort by last modified time
    Searched defs:layoutInflater (Results 1 - 25 of 50) sorted by null

1 2

  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
LayoutInflaterTest.java 4 import android.view.LayoutInflater;
16 private LayoutInflater layoutInflater;
20 layoutInflater = LayoutInflater.from(Robolectric.application);
25 assertNotNull(layoutInflater);
26 assertSame(LayoutInflater.from(Robolectric.application), layoutInflater);
27 assertSame(LayoutInflater.from(new ContextWrapper(Robolectric.application)), layoutInflater);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
GalleryGridAdapter.java 21 import android.view.LayoutInflater;
59 final LayoutInflater layoutInflater = LayoutInflater.from(context);
60 return layoutInflater.inflate(R.layout.gallery_grid_item_view, parent, false);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarSettingsActionProviderActivity.java 24 import android.view.LayoutInflater;
88 LayoutInflater layoutInflater = LayoutInflater.from(mContext);
89 View view = layoutInflater.inflate(R.layout.action_bar_settings_action_provider, null);
  /frameworks/support/design/tests/src/android/support/design/testutils/
TestUtilsActions.java 37 import android.view.LayoutInflater;
74 final LayoutInflater layoutInflater =
75 LayoutInflater.from(view.getContext());
76 final TabLayout newTabLayout = (TabLayout) layoutInflater.inflate(
  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/app/
ActionBarSettingsActionProviderActivity.java 26 import android.view.LayoutInflater;
73 LayoutInflater layoutInflater = LayoutInflater.from(getContext());
74 View view = layoutInflater.inflate(R.layout.action_bar_settings_action_provider, null);
  /packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
ConversationListAdapter.java 22 import android.view.LayoutInflater;
59 final LayoutInflater layoutInflater = LayoutInflater.from(context);
61 (ConversationListItemView) layoutInflater.inflate(
  /packages/apps/Messaging/src/com/android/messaging/ui/contact/
ContactListAdapter.java 21 import android.view.LayoutInflater;
62 final LayoutInflater layoutInflater = LayoutInflater.from(context);
63 return layoutInflater.inflate(R.layout.contact_list_item_view, parent, false);
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ConversationMessageAdapter.java 21 import android.view.LayoutInflater;
74 final LayoutInflater layoutInflater = LayoutInflater.from(context);
76 layoutInflater.inflate(R.layout.conversation_message_view, null);
  /cts/tests/tests/widget/src/android/widget/cts/
ResourceCursorAdapterTest.java 34 import android.view.LayoutInflater;
60 LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(
62 mParent = (ViewGroup) layoutInflater.inflate(R.layout.cursoradapter_host, null);
ResourceCursorTreeAdapterTest.java 29 import android.view.LayoutInflater;
77 LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(
79 mParent = (ViewGroup) layoutInflater.inflate(R.layout.cursoradapter_host, null);
SimpleCursorAdapterTest.java 42 import android.view.LayoutInflater;
356 LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(
358 ViewGroup viewGroup = (ViewGroup) layoutInflater.inflate(
373 LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(
375 ViewGroup viewGroup = (ViewGroup) layoutInflater.inflate(
  /packages/apps/Camera2/src/com/android/camera/captureintent/
CaptureIntentModuleUI.java 34 import android.view.LayoutInflater;
95 final LayoutInflater layoutInflater = AndroidServices.instance().provideLayoutInflater();
98 layoutInflater.inflate(R.layout.capture_module, moduleRoot, true);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationIconAreaController.java 11 import android.view.LayoutInflater;
57 protected View inflateIconArea(LayoutInflater inflater) {
67 LayoutInflater layoutInflater = LayoutInflater.from(context);
68 mNotificationIconArea = inflateIconArea(layoutInflater);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothNameDialogFragment.java 35 import android.view.LayoutInflater;
135 final LayoutInflater layoutInflater = (LayoutInflater)getActivity()
137 View view = layoutInflater.inflate(R.layout.dialog_edittext, null);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
DialogTestListActivity.java 28 import android.view.LayoutInflater;
306 LayoutInflater layoutInflater = LayoutInflater.from(mContext);
307 View view = layoutInflater.inflate(R.layout.dialog_custom_view,
  /cts/tests/tests/view/src/android/view/cts/
LayoutInflaterTest.java 43 import android.view.LayoutInflater;
44 import android.view.LayoutInflater.Factory;
45 import android.view.LayoutInflater.Filter;
59 private LayoutInflater mLayoutInflater;
75 mLayoutInflater = (LayoutInflater) mContext.getSystemService(
82 mLayoutInflater = LayoutInflater.from(mContext);
88 LayoutInflater layoutInflater = new MockLayoutInflater(mLayoutInflater,
90 assertNotNull(layoutInflater);
154 mLayoutInflater = LayoutInflater.from(mContext)
    [all...]
  /frameworks/support/wear/src/android/support/wear/widget/drawer/
WearableActionDrawerView.java 34 import android.view.LayoutInflater;
139 LayoutInflater layoutInflater = LayoutInflater.from(context);
140 View peekView = layoutInflater.inflate(
427 LayoutInflater.from(parent.getContext())
434 LayoutInflater.from(parent.getContext())
  /packages/apps/Calendar/src/com/android/calendar/event/
CreateEventDialogFragment.java 35 import android.view.LayoutInflater;
129 final LayoutInflater layoutInflater = (LayoutInflater) activity
131 View view = layoutInflater.inflate(R.layout.create_event_dialog, null);
  /packages/apps/Messaging/src/com/android/messaging/ui/
AttachmentPreview.java 26 import android.view.LayoutInflater;
212 final LayoutInflater layoutInflater = LayoutInflater.from(getContext());
260 layoutInflater, attachment, mAttachmentView,
MultiAttachmentLayout.java 22 import android.view.LayoutInflater;
228 final LayoutInflater layoutInflater = LayoutInflater.from(getContext());
247 final View view = AttachmentPreviewFactory.createAttachmentPreview(layoutInflater,
286 mPlusTextView = (TextView) layoutInflater.inflate(R.layout.attachment_more_text_view,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
HifiUltrasoundTestActivity.java 31 import android.view.LayoutInflater;
58 private LayoutInflater layoutInflater;
113 layoutInflater = (LayoutInflater) getBaseContext().getSystemService(
115 popupView = layoutInflater.inflate(R.layout.hifi_ultrasound_popup, null);
HifiUltrasoundSpeakerTestActivity.java 31 import android.view.LayoutInflater;
62 private LayoutInflater layoutInflater;
131 layoutInflater = (LayoutInflater) getBaseContext().getSystemService(
133 popupView = layoutInflater.inflate(R.layout.hifi_ultrasound_popup, null);
136 instruView = layoutInflater.inflate(R.layout.hifi_ultrasound_popup_instru, null);
  /development/samples/ContactManager/src/com/example/android/contactmanager/
ContactAdder.java 31 import android.view.LayoutInflater;
371 LayoutInflater layoutInflater = getLayoutInflater();
372 convertView = layoutInflater.inflate(R.layout.account_entry, parent, false);
  /frameworks/base/core/java/android/preference/
Preference.java 36 import android.view.LayoutInflater;
578 final LayoutInflater layoutInflater =
579 (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
581 final View layout = layoutInflater.inflate(mLayoutResId, parent, false);
587 layoutInflater.inflate(mWidgetLayoutResId, widgetFrame);
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowApplication.java 15 import android.view.LayoutInflater;
51 SYSTEM_SERVICE_MAP.put(Context.LAYOUT_INFLATER_SERVICE, "android.view.LayoutInflater");
92 LayoutInflater layoutInflater;
152 return LayoutInflater.from(realApplication);
463 public LayoutInflater getLayoutInflater() {
464 return layoutInflater;

Completed in 1200 milliseconds

1 2