HomeSort by relevance Sort by last modified time
    Searched defs:inflater (Results 251 - 275 of 320) sorted by null

<<111213

  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java 285 LayoutInflater inflater = mActivity.getLayoutInflater(); local
287 (AggregationSuggestionView) inflater.inflate(
375 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedState) {
376 final View view = inflater.inflate(R.layout.contact_editor_fragment, container, false);
785 final LayoutInflater inflater = (LayoutInflater) mContext.getSystemService( local
800 editor = (BaseRawContactEditorView) inflater.inflate(
804 editor = (RawContactEditorView) inflater.inflate(R.layout.raw_contact_editor_view,
    [all...]
  /frameworks/base/core/java/android/widget/
NumberPicker.java 627 LayoutInflater inflater = (LayoutInflater) getContext().getSystemService( local
629 inflater.inflate(layoutResId, this, true);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
DataUsageSummary.java 308 public View onCreateView(LayoutInflater inflater, ViewGroup container,
311 final Context context = inflater.getContext();
312 final View view = inflater.inflate(R.layout.data_usage_summary, container, false);
333 mHeader = (ViewGroup) inflater.inflate(R.layout.data_usage_header, mListView, false);
352 mDataEnabled = new Switch(inflater.getContext());
353 mDataEnabledView = inflatePreference(inflater, mNetworkSwitches, mDataEnabled);
357 mDisableAtLimit = new CheckBox(inflater.getContext());
360 mDisableAtLimitView = inflatePreference(inflater, mNetworkSwitches, mDisableAtLimit);
391 mAppRestrict = new CheckBox(inflater.getContext());
394 mAppRestrictView = inflatePreference(inflater, mAppSwitches, mAppRestrict)
768 final LayoutInflater inflater = getActivity().getLayoutInflater(); local
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
WindowTest.java 219 final LayoutInflater inflater = mActivity.getLayoutInflater(); local
224 mWindow.addContentView(inflater.inflate(R.layout.windowstub_addlayout, null), lp);
    [all...]
  /frameworks/base/core/java/android/view/
VolumePanel.java 271 LayoutInflater inflater = (LayoutInflater) context local
273 View view = mView = inflater.inflate(R.layout.volume_adjust, null);
404 LayoutInflater inflater = (LayoutInflater) mContext local
416 sc.group = (ViewGroup) inflater.inflate(R.layout.volume_adjust_item, null);
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DirectoryFragment.java 188 LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
189 final Context context = inflater.getContext();
190 final View view = inflater.inflate(R.layout.fragment_directory, container, false);
630 final LayoutInflater inflater = LayoutInflater.from(context); local
632 convertView = inflater.inflate(R.layout.item_loading_list, parent, false);
634 convertView = inflater.inflate(R.layout.item_loading_grid, parent, false);
660 final LayoutInflater inflater = LayoutInflater.from(context); local
662 convertView = inflater.inflate(R.layout.item_message_list, parent, false);
664 convertView = inflater.inflate(R.layout.item_message_grid, parent, false);
744 final LayoutInflater inflater = LayoutInflater.from(context) local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QuickSettings.java 266 LayoutInflater inflater = LayoutInflater.from(mContext); local
268 addUserTiles(mContainerView, inflater);
269 addSystemTiles(mContainerView, inflater);
270 addTemporaryTiles(mContainerView, inflater);
302 private void addUserTiles(ViewGroup parent, LayoutInflater inflater) {
304 inflater.inflate(R.layout.quick_settings_tile, parent, false);
305 userTile.setContent(R.layout.quick_settings_tile_user, inflater);
379 private void addSystemTiles(ViewGroup parent, LayoutInflater inflater) {
382 inflater.inflate(R.layout.quick_settings_tile, parent, false);
383 wifiTile.setContent(R.layout.quick_settings_tile_wifi, inflater);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SMSDispatcher.java 876 LayoutInflater inflater = (LayoutInflater) mContext.getSystemService( local
    [all...]
  /hardware/ti/wpan/tools/FM/FmRxApp/src/com/ti/fmrxapp/
FmRxApp.java 1761 LayoutInflater inflater = getLayoutInflater(); local
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BaseUi.java 735 LayoutInflater inflater = LayoutInflater.from(mActivity); local
736 mVideoProgressView = inflater.inflate(
TabBar.java 270 LayoutInflater inflater = LayoutInflater.from(getContext()); local
271 mTabContent = inflater.inflate(R.layout.tab_title, this, true);
Controller.java 1255 MenuInflater inflater = mActivity.getMenuInflater(); local
1289 MenuInflater inflater = mActivity.getMenuInflater(); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaWindowAdapter.java 364 LayoutInflater inflater = (LayoutInflater) context local
366 mHeaderView = (TextView)inflater.inflate(R.layout.agenda_header_footer, null);
367 mFooterView = (TextView)inflater.inflate(R.layout.agenda_header_footer, null);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventFragment.java 560 public View onCreateView(LayoutInflater inflater, ViewGroup container,
565 view = inflater.inflate(R.layout.edit_event_single_column, null);
567 view = inflater.inflate(R.layout.edit_event, null);
574 View actionBarButtons = inflater.inflate(R.layout.edit_event_custom_actionbar,
634 public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
635 super.onCreateOptionsMenu(menu, inflater);
638 inflater.inflate(R.menu.edit_event_title_bar, menu);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupEditorFragment.java 207 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedState) {
209 mLayoutInflater = inflater;
210 mRootView = (ViewGroup) inflater.inflate(R.layout.group_editor_fragment, container, false);
511 public void onCreateOptionsMenu(Menu menu, final MenuInflater inflater) {
512 inflater.inflate(R.menu.edit_group, menu);
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
CustomContactListFilterActivity.java 100 final LayoutInflater inflater = getLayoutInflater(); local
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java 425 public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
427 inflater.inflate(R.menu.settings_fragment_menu, menu);
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageDetail.java 150 LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
151 final View view = inflater.inflate(R.layout.power_usage_details, container, false);
313 LayoutInflater inflater = getActivity().getLayoutInflater(); local
338 ViewGroup item = (ViewGroup) inflater.inflate(R.layout.power_usage_detail_item_text,
411 LayoutInflater inflater = getActivity().getLayoutInflater(); local
412 ViewGroup item = (ViewGroup) inflater.inflate(R.layout.power_usage_action_item,null);
512 LayoutInflater inflater = getActivity().getLayoutInflater();
534 ViewGroup item = (ViewGroup) inflater.inflate(R.layout.power_usage_package_item,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
EmojiPalettesView.java 699 final LayoutInflater inflater = LayoutInflater.from(container.getContext()); local
700 final View view = inflater.inflate(
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTable.java 463 LayoutInflater inflater = (LayoutInflater) table.getContext() local
465 View photo = inflater.inflate(R.layout.photo, null);
    [all...]
  /packages/apps/Camera/src/com/android/camera/
PhotoModule.java 1717 LayoutInflater inflater = mActivity.getLayoutInflater(); local
    [all...]
VideoModule.java 2195 LayoutInflater inflater = mActivity.getLayoutInflater(); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
ComposeActivity.java 1960 MenuInflater inflater = getMenuInflater(); local
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 1090 LayoutInflater inflater = (LayoutInflater) getContext().getSystemService( local
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarView.java 190 final LayoutInflater inflater = LayoutInflater.from(context); local
196 mUpGoerFive = (ViewGroup) inflater.inflate(
198 mHomeLayout = (HomeView) inflater.inflate(homeResId, mUpGoerFive, false);
200 mExpandedHomeLayout = (HomeView) inflater.inflate(homeResId, mUpGoerFive, false);
228 mCustomNavView = (View) inflater.inflate(customNavId, this, false);
825 LayoutInflater inflater = LayoutInflater.from(getContext()); local
826 mTitleLayout = (LinearLayout) inflater.inflate(R.layout.action_bar_title_item,
    [all...]

Completed in 2366 milliseconds

<<111213