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

  /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);
  /packages/apps/Contacts/src/com/android/contacts/interactions/
GroupNameDialogFragment.java 29 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/Contacts/src/com/android/contacts/calllog/
CallDetailHistoryAdapter.java 25 import android.view.LayoutInflater;
41 private final LayoutInflater mLayoutInflater;
62 public CallDetailHistoryAdapter(Context context, LayoutInflater layoutInflater,
66 mLayoutInflater = layoutInflater;
  /frameworks/base/policy/src/com/android/internal/policy/impl/
PasswordUnlockScreen.java 40 import android.view.LayoutInflater;
96 LayoutInflater layoutInflater = LayoutInflater.from(context);
98 layoutInflater.inflate(R.layout.keyguard_screen_password_portrait, this, true);
100 layoutInflater.inflate(R.layout.keyguard_screen_password_landscape, this, true);
  /cts/tests/tests/widget/src/android/widget/cts/
SimpleCursorAdapterTest.java 28 import android.view.LayoutInflater;
307 LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(
309 ViewGroup viewGroup = (ViewGroup) layoutInflater.inflate(
321 LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(
323 ViewGroup viewGroup = (ViewGroup) layoutInflater.inflate(
ResourceCursorAdapterTest.java 26 import android.view.LayoutInflater;
48 LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(
50 mParent = (ViewGroup) layoutInflater.inflate(R.layout.cursoradapter_host, null);
ResourceCursorTreeAdapterTest.java 26 import android.view.LayoutInflater;
69 LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(
71 mParent = (ViewGroup) layoutInflater.inflate(R.layout.cursoradapter_host, null);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothNameDialogFragment.java 34 import android.view.LayoutInflater;
125 final LayoutInflater layoutInflater = (LayoutInflater)getActivity()
127 View view = layoutInflater.inflate(R.layout.dialog_edittext, null);
  /frameworks/base/core/java/android/preference/
Preference.java 33 import android.view.LayoutInflater;
471 final LayoutInflater layoutInflater =
472 (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
474 final View layout = layoutInflater.inflate(mLayoutResId, parent, false);
480 layoutInflater.inflate(mWidgetLayoutResId, widgetFrame);
    [all...]
  /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;
46 private LayoutInflater mLayoutInflater;
70 mLayoutInflater = (LayoutInflater) mContext
76 mLayoutInflater = LayoutInflater.from(mContext);
82 LayoutInflater layoutInflater = new MockLayoutInflater(mLayoutInflater,
84 assertNotNull(layoutInflater);
148 mLayoutInflater = LayoutInflater.from(mContext)
    [all...]
  /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);
  /packages/apps/Contacts/src/com/android/contacts/editor/
LabeledEditorView.java 43 import android.view.LayoutInflater;
384 final LayoutInflater layoutInflater = LayoutInflater.from(builder.getContext());
387 final View view = layoutInflater.inflate(R.layout.contact_editor_label_name_dialog, null);
518 private final LayoutInflater mInflater;
524 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  /frameworks/base/core/java/android/widget/
CalendarView.java 38 import android.view.LayoutInflater;
394 LayoutInflater layoutInflater = (LayoutInflater) mContext
396 View content = layoutInflater.inflate(R.layout.calendar_view, null, false);
    [all...]
AbsListView.java 50 import android.view.LayoutInflater;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java 50 import android.view.LayoutInflater;
301 LayoutInflater layoutInflater = (LayoutInflater)
306 mScreenshotLayout = layoutInflater.inflate(R.layout.global_screenshot, null);
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventView.java 46 import android.view.LayoutInflater;
387 LayoutInflater layoutInflater = (LayoutInflater) alertDialogContext
389 final TextView timezoneFooterView = (TextView) layoutInflater.inflate(
    [all...]

Completed in 347 milliseconds