HomeSort by relevance Sort by last modified time
    Searched refs:layoutInflater (Results 26 - 50 of 53) sorted by null

12 3

  /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);
  /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);
  /packages/apps/Messaging/src/com/android/messaging/ui/
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,
AttachmentPreview.java 26 import android.view.LayoutInflater;
212 final LayoutInflater layoutInflater = LayoutInflater.from(getContext());
260 layoutInflater, attachment, mAttachmentView,
  /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/TV/src/com/android/tv/ui/sidepanel/
SideFragment.java 27 import android.view.LayoutInflater;
91 public View onCreateView(LayoutInflater inflater, ViewGroup container,
244 LayoutInflater inflater =
245 (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
257 private final LayoutInflater mLayoutInflater;
260 private ItemAdapter(LayoutInflater layoutInflater, List<Item> items) {
261 mLayoutInflater = layoutInflater;
  /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);
  /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;
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
ConferenceParticipantListAdapter.java 27 import android.view.LayoutInflater;
215 private final LayoutInflater mLayoutInflater;
232 * @param layoutInflater The layout inflater.
236 LayoutInflater layoutInflater, ContactPhotoManager contactPhotoManager) {
241 mLayoutInflater = layoutInflater;
  /cts/tests/tests/view/src/android/view/cts/
LayoutInflaterTest.java 37 import android.view.LayoutInflater;
40 import android.view.LayoutInflater.Factory;
41 import android.view.LayoutInflater.Filter;
45 private LayoutInflater mLayoutInflater;
71 mLayoutInflater = (LayoutInflater) mContext
77 mLayoutInflater = LayoutInflater.from(mContext);
83 LayoutInflater layoutInflater = new MockLayoutInflater(mLayoutInflater,
85 assertNotNull(layoutInflater);
149 mLayoutInflater = LayoutInflater.from(mContext)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
LabeledEditorView.java 31 import android.view.LayoutInflater;
430 final LayoutInflater layoutInflater = LayoutInflater.from(builder.getContext());
433 final View view = layoutInflater.inflate(R.layout.contact_editor_label_name_dialog, null);
564 private final LayoutInflater mInflater;
571 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  /frameworks/base/core/java/android/preference/
Preference.java 37 import android.view.LayoutInflater;
514 final LayoutInflater layoutInflater =
515 (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
517 final View layout = layoutInflater.inflate(mLayoutResId, parent, false);
523 layoutInflater.inflate(mWidgetLayoutResId, widgetFrame);
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AppCompatDelegateImplV9.java 78 import android.view.LayoutInflater;
284 LayoutInflater.from(mContext).inflate(resId, contentParent);
373 final LayoutInflater inflater = LayoutInflater.from(mContext);
388 * pre-L, we emulate it by manually creating a LayoutInflater using a
402 subDecor = (ViewGroup) LayoutInflater.from(themedContext)
    [all...]
  /frameworks/base/core/java/android/widget/
CalendarViewLegacyDelegate.java 36 import android.view.LayoutInflater;
314 LayoutInflater layoutInflater = (LayoutInflater) mContext
316 View content = layoutInflater.inflate(R.layout.calendar_view, null, false);
    [all...]
AbsListView.java 52 import android.view.LayoutInflater;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java 52 import android.view.LayoutInflater;
443 LayoutInflater layoutInflater = (LayoutInflater)
448 mScreenshotLayout = layoutInflater.inflate(R.layout.global_screenshot, null);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ConversationMessageView.java 34 import android.view.LayoutInflater;
599 final LayoutInflater layoutInflater = LayoutInflater.from(getContext());
613 attachmentView = layoutInflater.inflate(attachmentViewLayoutRes,
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactActivity.java 85 import android.view.LayoutInflater;
570 final LayoutInflater layoutInflater = LayoutInflater.from(this);
571 final View suggestionView = layoutInflater.inflate(
    [all...]
  /prebuilts/sdk/current/support/v13/
android-support-v13.jar 
  /prebuilts/sdk/current/support/v4/
android-support-v4.jar 
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 

Completed in 1317 milliseconds

12 3