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

1 2

  /frameworks/support/v4/java/android/support/v4/view/
LayoutInflaterCompat.java 20 import android.view.LayoutInflater;
23 * Helper for accessing features in {@link android.view.LayoutInflater}
29 public void setFactory(LayoutInflater layoutInflater, LayoutInflaterFactory factory);
34 public void setFactory(LayoutInflater layoutInflater, LayoutInflaterFactory factory) {
35 LayoutInflaterCompatBase.setFactory(layoutInflater, factory);
41 public void setFactory(LayoutInflater layoutInflater, LayoutInflaterFactory factory) {
42 LayoutInflaterCompatHC.setFactory(layoutInflater, factory)
    [all...]
  /external/robolectric/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...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowLayoutInflater.java 5 import android.view.LayoutInflater;
16 * Shadow of {@code LayoutInflater} that actually inflates layouts into {@code View}s that are functional enough to
20 @Implements(LayoutInflater.class)
22 private static AppSingletonizer<LayoutInflater> instances = new LayoutInflaterAppSingletonizer();
26 private static LayoutInflater bind(LayoutInflater layoutInflater, Context context) {
27 shadowOf(layoutInflater).context = context;
28 return layoutInflater;
32 public static LayoutInflater from(Context context)
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/
AttachmentPreviewFactory.java 24 import android.view.LayoutInflater;
64 public static View createAttachmentPreview(final LayoutInflater layoutInflater,
71 attachmentView = createPendingAttachmentPreview(layoutInflater, parent,
74 attachmentView = createImagePreview(layoutInflater, attachmentData, parent, viewType,
77 attachmentView = createAudioPreview(layoutInflater, attachmentData, parent, viewType);
79 attachmentView = createVideoPreview(layoutInflater, attachmentData, parent, viewType);
81 attachmentView = createVCardPreview(layoutInflater, attachmentData, parent, viewType);
149 private static View createImagePreview(final LayoutInflater layoutInflater,
    [all...]
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,
  /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);
  /development/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/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);
  /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);
  /development/ndk/platforms/android-17/samples/Teapot/src/com/sample/teapot/
TeapotNativeActivity.java 22 import android.view.LayoutInflater;
97 LayoutInflater layoutInflater
98 = (LayoutInflater)getBaseContext()
100 View popupView = layoutInflater.inflate(R.layout.widgets, null);
  /development/ndk/platforms/android-18/samples/MoreTeapots/src/com/sample/moreteapots/
MoreTeapotsNativeActivity.java 24 import android.view.LayoutInflater;
108 LayoutInflater layoutInflater
109 = (LayoutInflater)getBaseContext()
111 View popupView = layoutInflater.inflate(R.layout.widgets, null);
  /packages/apps/Contacts/src/com/android/contacts/interactions/
GroupNameDialogFragment.java 27 import android.view.LayoutInflater;
46 final LayoutInflater layoutInflater = LayoutInflater.from(builder.getContext());
47 final View view = layoutInflater.inflate(R.layout.group_name_dialog, null);
  /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);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallDetailHistoryAdapter.java 23 import android.view.LayoutInflater;
47 private final LayoutInflater mLayoutInflater;
56 public CallDetailHistoryAdapter(Context context, LayoutInflater layoutInflater,
59 mLayoutInflater = layoutInflater;
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
ExpandingEntryCardView.java 41 import android.view.LayoutInflater;
280 LayoutInflater inflater = LayoutInflater.from(context);
316 LayoutInflater layoutInflater = LayoutInflater.from(getContext());
340 inflateAllEntries(layoutInflater);
343 inflateInitialEntries(layoutInflater);
533 private void inflateInitialEntries(LayoutInflater layoutInflater) {
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
HifiUltrasoundSpeakerTestActivity.java 31 import android.view.LayoutInflater;
59 private LayoutInflater layoutInflater;
128 layoutInflater = (LayoutInflater) getBaseContext().getSystemService(
130 popupView = layoutInflater.inflate(R.layout.hifi_ultrasound_popup, null);
133 instruView = layoutInflater.inflate(R.layout.hifi_ultrasound_popup_instru, null);
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);
  /cts/tests/tests/widget/src/android/widget/cts/
SimpleCursorAdapterTest.java 30 import android.view.LayoutInflater;
327 LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(
329 ViewGroup viewGroup = (ViewGroup) layoutInflater.inflate(
343 LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(
345 ViewGroup viewGroup = (ViewGroup) layoutInflater.inflate(
ResourceCursorAdapterTest.java 27 import android.view.LayoutInflater;
49 LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(
51 mParent = (ViewGroup) layoutInflater.inflate(R.layout.cursoradapter_host, null);
ResourceCursorTreeAdapterTest.java 27 import android.view.LayoutInflater;
70 LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(
72 mParent = (ViewGroup) layoutInflater.inflate(R.layout.cursoradapter_host, null);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
DialogTestListActivity.java 26 import android.view.LayoutInflater;
268 LayoutInflater layoutInflater = LayoutInflater.from(mContext);
269 View view = layoutInflater.inflate(R.layout.dialog_custom_view,
  /development/samples/Support7Demos/src/com/example/android/supportv7/util/
SortedListActivity.java 26 import android.view.LayoutInflater;
75 final LayoutInflater mLayoutInflater;
76 public SortedListAdapter(LayoutInflater layoutInflater, Item... items) {
77 mLayoutInflater = layoutInflater;
  /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);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothNameDialogFragment.java 35 import android.view.LayoutInflater;
127 final LayoutInflater layoutInflater = (LayoutInflater)getActivity()
129 View view = layoutInflater.inflate(R.layout.dialog_edittext, null);

Completed in 777 milliseconds

1 2