Home
last modified time | relevance | path

Searched refs:inflate (Results 1 – 25 of 573) sorted by relevance

12345678910>>...23

/packages/apps/UnifiedEmail/src/com/android/mail/ui/
DWaitFragment.java79 .inflate(R.layout.wait_container, container, false); in onCreateView()
90 view = mInflater.inflate(R.layout.wait_for_manual_sync, root, false); in getContent()
96 view = mInflater.inflate(R.layout.loading_messages, root, false); in getContent()
98 view = mInflater.inflate(R.layout.wait_default, root, false); in getContent()
/packages/apps/Settings/src/com/android/settings/wifi/
DWifiSettingsForSetupWizard.java59 inflater.inflate(R.layout.setup_wifi_layout, container, false); in onCreateView()
62 mAddOtherNetworkItem = inflater.inflate(R.layout.setup_wifi_add_network, list, false); in onCreateView()
73 mMacAddressFooter = inflater.inflate(R.layout.setup_wifi_mac_address, list, false); in onCreateView()
149 mEmptyFooter = (TextView) inflater.inflate(R.layout.setup_wifi_empty, getListView(), false); in initEmptyTextView()
/packages/services/Car/car-support-lib/src/android/support/car/ui/
DCarListItemViewHolder.java52 rightCheckbox = (CheckBox) rightStub.inflate(); in CarListItemViewHolder()
56 rightImage = (ImageView) rightStub.inflate(); in CarListItemViewHolder()
60 rightText = (TextView) rightStub.inflate(); in CarListItemViewHolder()
/packages/apps/Contacts/src/com/android/contacts/list/
DJoinContactListAdapter.java147 View view = inflate(R.layout.join_contact_picker_section_header, parent); in newHeaderView()
153 View view = inflate(R.layout.join_contact_picker_section_header, parent); in newHeaderView()
179 private View inflate(int layoutId, ViewGroup parent) { in inflate() method in JoinContactListAdapter
180 return LayoutInflater.from(getContext()).inflate(layoutId, parent, false); in inflate()
/packages/apps/LegacyCamera/src/com/android/camera/
DPreferenceInflater.java50 public CameraPreference inflate(int resId) { in inflate() method in PreferenceInflater
51 return inflate(mContext.getResources().getXml(resId)); in inflate()
75 private CameraPreference inflate(XmlPullParser parser) { in inflate() method in PreferenceInflater
DOnScreenHint.java109 LayoutInflater inflate = in makeText() local
112 View v = inflate.inflate(R.layout.on_screen_hint, null); in makeText()
/packages/apps/Camera2/src/com/android/camera/
DOnScreenHint.java108 LayoutInflater inflate = (LayoutInflater) activity.getSystemService( in makeText() local
110 View v = inflate.inflate(R.layout.on_screen_hint, null); in makeText()
/packages/apps/Tag/src/com/android/apps/tag/
DTagViewer.java85 TextView empty = (TextView) inflater.inflate(R.layout.tag_text, content, false); in buildTagViews()
96 TextView empty = (TextView) inflater.inflate(R.layout.tag_text, content, false); in buildTagViews()
103 inflater.inflate(R.layout.tag_divider, content, true); in buildTagViews()
/packages/apps/Messaging/src/com/android/messaging/ui/
DAttachmentPreviewFactory.java167 final View view = layoutInflater.inflate(layoutId, parent, false /* attachToRoot */); in createImagePreview()
194 final View pendingItemView = layoutInflater.inflate(R.layout.attachment_pending_item, in createPendingAttachmentPreview()
226 final View view = layoutInflater.inflate(layoutId, parent, false /* attachToRoot */); in createVCardPreview()
269 final View view = layoutInflater.inflate(layoutId, parent, false /* attachToRoot */); in createAudioPreview()
295 final VideoThumbnailView videoThumbnail = (VideoThumbnailView) layoutInflater.inflate( in createVideoPreview()
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
DExternalSource.java94 public void inflate(Context context, int inflateLevel) { in inflate() method in ExternalSource
104 inflate(context, parser); in inflate()
118 protected void inflate(Context context, XmlPullParser parser) { in inflate() method in ExternalSource
/packages/apps/Settings/src/com/android/settings/
DResetNetworkConfirm.java128 return inflater.inflate(R.layout.network_reset_disallowed_screen, null); in onCreateView()
130 View view = inflater.inflate(R.layout.admin_support_details_empty_view, null); in onCreateView()
135 mContentView = inflater.inflate(R.layout.reset_network_confirm, null); in onCreateView()
DMasterClearConfirm.java146 return inflater.inflate(R.layout.master_clear_disallowed_screen, null); in onCreateView()
148 View view = inflater.inflate(R.layout.admin_support_details_empty_view, null); in onCreateView()
153 mContentView = inflater.inflate(R.layout.master_clear_confirm, null); in onCreateView()
DResetNetwork.java191 return inflater.inflate(R.layout.network_reset_disallowed_screen, null); in onCreateView()
193 View view = inflater.inflate(R.layout.admin_support_details_empty_view, null); in onCreateView()
199 mContentView = inflater.inflate(R.layout.reset_network, null); in onCreateView()
DMasterClear.java268 TextView child = (TextView)inflater.inflate(R.layout.master_clear_account, in loadAccountList()
294 return inflater.inflate(R.layout.master_clear_disallowed_screen, null); in onCreateView()
296 View view = inflater.inflate(R.layout.admin_support_details_empty_view, null); in onCreateView()
302 mContentView = inflater.inflate(R.layout.master_clear, null); in onCreateView()
/packages/apps/Tag/src/com/android/apps/tag/record/
DRecordUtils.java71 TextView text = (TextView) inflater.inflate(R.layout.tag_text, parent, false); in getViewsForIntent()
91 inflater.inflate(R.layout.tag_divider, container); in getViewsForIntent()
113 View item = inflater.inflate(R.layout.tag_uri, parent, false); in buildActivityView()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothPermissionActivity.java166 mView = getLayoutInflater().inflate(R.layout.bluetooth_access, null); in createConnectionDialogView()
175 mView = getLayoutInflater().inflate(R.layout.bluetooth_access, null); in createPhonebookDialogView()
184 mView = getLayoutInflater().inflate(R.layout.bluetooth_access, null); in createMapDialogView()
193 mView = getLayoutInflater().inflate(R.layout.bluetooth_access, null); in createSapDialogView()
/packages/apps/Camera2/src/com/android/camera/ui/
DAbstractTutorialOverlay.java70 ViewGroup placeHolder = (ViewGroup) inflater.inflate(R.layout.tutorials_placeholder, in show()
72 onInflated(inflater.inflate(mLayoutResId, placeHolder)); in show()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
DTextInputWizardFragment.java87 final View view = inflater.inflate(R.layout.account_content_area, container, false); in onCreateView()
90 final View content = inflater.inflate(R.layout.wifi_content, descriptionArea, false); in onCreateView()
94 final View action = inflater.inflate(R.layout.wifi_text_input, actionArea, false); in onCreateView()
DPasswordInputWizardFragment.java80 final View view = inflater.inflate(R.layout.account_content_area, container, false); in onCreateView()
83 final View content = inflater.inflate(R.layout.wifi_content, descriptionArea, false); in onCreateView()
87 final View action = inflater.inflate(R.layout.password_text_input, actionArea, false); in onCreateView()
/packages/apps/Messaging/src/com/android/messaging/ui/attachmentchooser/
DAttachmentChooserFragment.java64 final View view = inflater.inflate(R.layout.attachment_chooser_fragment, container, false); in onCreateView()
82 inflater.inflate(R.menu.attachment_chooser_menu, menu); in onCreateOptionsMenu()
176 itemView = (AttachmentGridItemView) inflater.inflate( in getView()
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
DComposeAttachmentTile.java26 public static ComposeAttachmentTile inflate(LayoutInflater inflater, ViewGroup parent) { in inflate() method in ComposeAttachmentTile
27 ComposeAttachmentTile view = (ComposeAttachmentTile) inflater.inflate( in inflate()
/packages/apps/Contacts/src/com/android/contacts/editor/
DCompactPhotoSelectionFragment.java199 return mLayoutInflater.inflate(R.layout.take_a_photo_button, /* root =*/ null); in getView()
206 return mLayoutInflater.inflate(R.layout.all_photos_button, /* root =*/ null); in getView()
217 photoItemView = mLayoutInflater.inflate( in getView()
288 final View view = inflater.inflate(R.layout.compact_photo_selection_fragment, in onCreateView()
/packages/apps/Contacts/src/com/android/contacts/activities/
DContactEditorAccountsChangedActivity.java94 view = View.inflate(this, in onCreate()
112 view = View.inflate(this, in onCreate()
140 view = View.inflate(this, in onCreate()
/packages/apps/Settings/src/com/android/settings/applications/
DProcessStatsMemDetail.java80 final View view = inflater.inflate(R.layout.process_stats_mem_details, container, false); in onCreateView()
109 ViewGroup item = (ViewGroup) inflater.inflate(R.layout.app_item, null); in addDetailsItem()
110 inflater.inflate(R.layout.widget_progress_bar, in addDetailsItem()
/packages/apps/Camera2/src/com/android/camera/widget/
DLocationDialogLayout.java56 inflate(context, R.layout.location_dialog_content, this); in LocationDialogLayout()
73 inflate(getContext(), R.layout.location_dialog_content, this); in onConfigurationChanged()

12345678910>>...23