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

  /cts/tests/tests/widget/src/android/widget/cts/
ResourceCursorAdapterTest.java 30 import android.view.LayoutInflater;
55 LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(
57 mParent = (ViewGroup) layoutInflater.inflate(R.layout.cursoradapter_host, null);
ResourceCursorTreeAdapterTest.java 30 import android.view.LayoutInflater;
76 LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(
78 mParent = (ViewGroup) layoutInflater.inflate(R.layout.cursoradapter_host, null);
SimpleCursorAdapterTest.java 33 import android.view.LayoutInflater;
402 LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(
404 ViewGroup viewGroup = (ViewGroup) layoutInflater.inflate(
421 LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(
423 ViewGroup viewGroup = (ViewGroup) layoutInflater.inflate(
  /frameworks/base/policy/src/com/android/internal/policy/impl/
PasswordUnlockScreen.java 34 import android.view.LayoutInflater;
82 LayoutInflater layoutInflater = LayoutInflater.from(context);
84 layoutInflater.inflate(R.layout.keyguard_screen_password_portrait, this, true);
86 layoutInflater.inflate(R.layout.keyguard_screen_password_landscape, this, true);
  /cts/tests/tests/view/src/android/view/cts/
LayoutInflaterTest.java 32 import android.view.LayoutInflater;
35 import android.view.LayoutInflater.Factory;
36 import android.view.LayoutInflater.Filter;
47 @TestTargetClass(LayoutInflater.class)
50 private LayoutInflater mLayoutInflater;
74 mLayoutInflater = (LayoutInflater) mContext
88 method = "LayoutInflater",
94 method = "LayoutInflater",
95 args = {android.view.LayoutInflater.class, android.content.Context.class}
100 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);
  /frameworks/base/core/java/android/preference/
Preference.java 33 import android.view.LayoutInflater;
409 final LayoutInflater layoutInflater =
410 (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
412 final View layout = layoutInflater.inflate(mLayoutResId, parent, false);
416 layoutInflater.inflate(mWidgetLayoutResId, widgetFrame);
    [all...]

Completed in 982 milliseconds