Home
last modified time | relevance | path

Searched refs:layoutInflater (Results 1 – 17 of 17) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/ui/
DAttachmentPreviewFactory.java64 public static View createAttachmentPreview(final LayoutInflater layoutInflater, in createAttachmentPreview() argument
71 attachmentView = createPendingAttachmentPreview(layoutInflater, parent, in createAttachmentPreview()
74 attachmentView = createImagePreview(layoutInflater, attachmentData, parent, viewType, in createAttachmentPreview()
77 attachmentView = createAudioPreview(layoutInflater, attachmentData, parent, viewType); in createAttachmentPreview()
79 attachmentView = createVideoPreview(layoutInflater, attachmentData, parent, viewType); in createAttachmentPreview()
81 attachmentView = createVCardPreview(layoutInflater, attachmentData, parent, viewType); in createAttachmentPreview()
149 private static View createImagePreview(final LayoutInflater layoutInflater, in createImagePreview() argument
167 final View view = layoutInflater.inflate(layoutId, parent, false /* attachToRoot */); in createImagePreview()
173 final Resources resources = layoutInflater.getContext().getResources(); in createImagePreview()
192 private static View createPendingAttachmentPreview(final LayoutInflater layoutInflater, in createPendingAttachmentPreview() argument
[all …]
DMultiAttachmentLayout.java228 final LayoutInflater layoutInflater = LayoutInflater.from(getContext()); in buildViews() local
247 final View view = AttachmentPreviewFactory.createAttachmentPreview(layoutInflater, in buildViews()
286 mPlusTextView = (TextView) layoutInflater.inflate(R.layout.attachment_more_text_view, in buildViews()
DAttachmentPreview.java212 final LayoutInflater layoutInflater = LayoutInflater.from(getContext()); in onAttachmentsChanged() local
260 layoutInflater, attachment, mAttachmentView, in onAttachmentsChanged()
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DExpandingEntryCardView.java338 LayoutInflater layoutInflater = LayoutInflater.from(getContext()); in initialize() local
362 inflateAllEntries(layoutInflater); in initialize()
365 inflateInitialEntries(layoutInflater); in initialize()
555 private void inflateInitialEntries(LayoutInflater layoutInflater) { in inflateInitialEntries() argument
558 inflateAllEntries(layoutInflater); in inflateInitialEntries()
568 entryViewList.add(createEntryView(layoutInflater, entryList.get(0), in inflateInitialEntries()
574 entryViewList.add(createEntryView(layoutInflater, entryList.get(1), in inflateInitialEntries()
585 entryViewList.add(createEntryView(layoutInflater, entryList.get(j), in inflateInitialEntries()
597 private void inflateAllEntries(LayoutInflater layoutInflater) { in inflateAllEntries() argument
616 viewList.add(createEntryView(layoutInflater, entry, iconVisibility)); in inflateAllEntries()
[all …]
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
DGalleryGridAdapter.java59 final LayoutInflater layoutInflater = LayoutInflater.from(context); in newView() local
60 return layoutInflater.inflate(R.layout.gallery_grid_item_view, parent, false); in newView()
/packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
DConversationListAdapter.java59 final LayoutInflater layoutInflater = LayoutInflater.from(context); in createViewHolder() local
61 (ConversationListItemView) layoutInflater.inflate( in createViewHolder()
/packages/apps/Messaging/src/com/android/messaging/ui/contact/
DContactListAdapter.java62 final LayoutInflater layoutInflater = LayoutInflater.from(context); in newView() local
63 return layoutInflater.inflate(R.layout.contact_list_item_view, parent, false); in newView()
/packages/apps/Contacts/src/com/android/contacts/interactions/
DGroupNameDialogFragment.java46 final LayoutInflater layoutInflater = LayoutInflater.from(builder.getContext()); in onCreateDialog() local
47 final View view = layoutInflater.inflate(R.layout.group_name_dialog, null); in onCreateDialog()
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
DConversationMessageAdapter.java74 final LayoutInflater layoutInflater = LayoutInflater.from(context); in createViewHolder() local
76 layoutInflater.inflate(R.layout.conversation_message_view, null); in createViewHolder()
DConversationMessageView.java599 final LayoutInflater layoutInflater = LayoutInflater.from(getContext()); in bindAttachmentsOfSameType() local
613 attachmentView = layoutInflater.inflate(attachmentViewLayoutRes, in bindAttachmentsOfSameType()
/packages/apps/Dialer/src/com/android/dialer/calllog/
DCallDetailHistoryAdapter.java56 public CallDetailHistoryAdapter(Context context, LayoutInflater layoutInflater, in CallDetailHistoryAdapter() argument
59 mLayoutInflater = layoutInflater; in CallDetailHistoryAdapter()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothNameDialogFragment.java127 final LayoutInflater layoutInflater = (LayoutInflater)getActivity() in createDialogView() local
129 View view = layoutInflater.inflate(R.layout.dialog_edittext, null); in createDialogView()
/packages/apps/Camera2/src/com/android/camera/captureintent/
DCaptureIntentModuleUI.java95 final LayoutInflater layoutInflater = AndroidServices.instance().provideLayoutInflater(); in CaptureIntentModuleUI() local
98 layoutInflater.inflate(R.layout.capture_module, moduleRoot, true); in CaptureIntentModuleUI()
/packages/apps/Calendar/src/com/android/calendar/event/
DCreateEventDialogFragment.java129 final LayoutInflater layoutInflater = (LayoutInflater) activity in onCreateDialog() local
131 View view = layoutInflater.inflate(R.layout.create_event_dialog, null); in onCreateDialog()
/packages/apps/InCallUI/src/com/android/incallui/
DConferenceParticipantListAdapter.java222 LayoutInflater layoutInflater, ContactPhotoManager contactPhotoManager) { in ConferenceParticipantListAdapter() argument
226 mLayoutInflater = layoutInflater; in ConferenceParticipantListAdapter()
/packages/apps/Contacts/src/com/android/contacts/editor/
DLabeledEditorView.java445 final LayoutInflater layoutInflater = LayoutInflater.from(builder.getContext()); in createCustomDialog() local
448 final View view = layoutInflater.inflate(R.layout.contact_editor_label_name_dialog, null); in createCustomDialog()
/packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
DWallpaperPickerActivity.java1137 public static View createImageTileView(LayoutInflater layoutInflater, in createImageTileView() argument
1142 view = layoutInflater.inflate(R.layout.wallpaper_picker_item, parent, false); in createImageTileView()