Searched defs:layoutId (Results 1 - 13 of 13) sorted by relevance

/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DBaseLandDataBinderTest.java22 public BaseLandDataBinderTest(Class<T> binderClass, int layoutId) { argument
H A DBindingAdapterTestBase.java32 public BindingAdapterTestBase(Class<T> binderClass, Class<V> observableClass, int layoutId) { argument
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/test/
H A DRecyclerViewTest.java33 private void setContentView(final int layoutId) throws Throwable { argument
38 activity.setContentView(layoutId);
/frameworks/data-binding/library/src/main/java/android/databinding/
H A DDataBinderMapper.java29 int layoutId) {
32 ViewDataBinding getDataBinder(DataBindingComponent bindingComponent, View[] view, int layoutId) { argument
28 getDataBinder(DataBindingComponent bindingComponent, View view, int layoutId) argument
H A DDataBindingUtil.java69 * Use this version only if <code>layoutId</code> is unknown in advance. Otherwise, use
73 * @param layoutId The layout resource ID of the layout to inflate.
82 * the layoutId wasn't for a binding layout.
86 public static <T extends ViewDataBinding> T inflate(LayoutInflater inflater, int layoutId, argument
88 return inflate(inflater, layoutId, parent, attachToParent, sDefaultComponent);
94 * Use this version only if <code>layoutId</code> is unknown in advance. Otherwise, use
98 * @param layoutId The layout resource ID of the layout to inflate.
108 * the layoutId wasn't for a binding layout.
112 LayoutInflater inflater, int layoutId, @Nullable ViewGroup parent,
116 final View view = inflater.inflate(layoutId, paren
111 inflate( LayoutInflater inflater, int layoutId, @Nullable ViewGroup parent, boolean attachToParent, DataBindingComponent bindingComponent) argument
189 bind(DataBindingComponent bindingComponent, View[] roots, int layoutId) argument
194 bind(DataBindingComponent bindingComponent, View root, int layoutId) argument
271 setContentView(Activity activity, int layoutId) argument
285 setContentView(Activity activity, int layoutId, DataBindingComponent bindingComponent) argument
[all...]
H A DViewDataBinding.java538 int layoutId) {
539 return DataBindingUtil.bind(bindingComponent, view, layoutId);
650 final int layoutId = includes.layoutIds[indexInIncludes][includeIndex];
654 layoutId);
662 layoutId);
537 bind(DataBindingComponent bindingComponent, View view, int layoutId) argument
/frameworks/support/v7/gridlayout/tests/src/android/support/v7/widget/test/
H A DGridLayoutTest.java39 private void setContentView(final int layoutId) throws Throwable { argument
44 activity.setContentView(layoutId);
/frameworks/base/core/java/android/transition/
H A DScene.java37 private View mLayout; // alternative to layoutId
42 * <code>layoutId</code> parameter. If such a Scene has already been created for
44 * This caching of layoutId-based scenes enables sharing of common scenes
50 * @param layoutId The id of a standard layout resource file.
55 public static Scene getSceneForLayout(ViewGroup sceneRoot, int layoutId, Context context) { argument
62 Scene scene = scenes.get(layoutId);
66 scene = new Scene(sceneRoot, layoutId, context);
67 scenes.put(layoutId, scene);
89 * the hierarchy specified by the layoutId resource file.
91 * <p>This method is hidden because layoutId
101 Scene(ViewGroup sceneRoot, int layoutId, Context context) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DPreviewInflater.java84 widgetView = appInflater.inflate(widgetInfo.layoutId, null, false);
110 int layoutId = metaData.getInt(META_DATA_KEYGUARD_LAYOUT);
111 if (layoutId == 0) {
116 info.layoutId = layoutId;
182 int layoutId; field in class:PreviewInflater.WidgetInfo
/frameworks/base/core/java/com/android/internal/app/
H A DLocalePicker.java159 final int layoutId, final int fieldId) {
166 return new ArrayAdapter<LocaleInfo>(context, layoutId, fieldId, localeInfos) {
172 view = inflater.inflate(layoutId, parent, false);
158 constructAdapter(Context context, final int layoutId, final int fieldId) argument
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootsFragment.java206 public Item(int layoutId) { argument
207 mLayoutId = layoutId;
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java1733 * @param layoutId The id of the layout resource
1735 public RemoteViews(String packageName, int layoutId) { argument
1736 this(getApplicationInfo(packageName, UserHandle.myUserId()), layoutId);
1745 * @param layoutId The id of the layout resource.
1749 public RemoteViews(String packageName, int userId, int layoutId) { argument
1750 this(getApplicationInfo(packageName, userId), layoutId);
1758 * @param layoutId The id of the layout resource.
1762 protected RemoteViews(ApplicationInfo application, int layoutId) { argument
1764 mLayoutId = layoutId;
/frameworks/base/core/java/android/app/
H A DNotification.java3126 private RemoteViews applyStandardTemplateWithActions(int layoutId) { argument
3127 RemoteViews big = applyStandardTemplate(layoutId);
3762 protected RemoteViews getStandardView(int layoutId) { argument
3771 RemoteViews contentView = mBuilder.applyStandardTemplateWithActions(layoutId);
5690 public BuilderRemoteViews(ApplicationInfo appInfo, int layoutId) { argument
5691 super(appInfo, layoutId);

Completed in 919 milliseconds