Searched refs:nestedView (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | RemoteViews.java | 2475 View nestedView = rvToApply.apply(context, target, rootParent, null /* size */, params); in apply() local 2477 setStableId(nestedView, mStableId); in apply() 2479 target.addView(nestedView, mIndex >= 0 ? mIndex : nextChild); in apply() 4074 public void addView(@IdRes int viewId, RemoteViews nestedView) { 4076 addAction(nestedView == null 4078 : new ViewGroupActionAdd(viewId, nestedView)); 4101 public void addStableView(@IdRes int viewId, @NonNull RemoteViews nestedView, int stableId) { 4102 addAction(new ViewGroupActionAdd(viewId, nestedView, -1 /* index */, stableId)); 4116 public void addView(@IdRes int viewId, RemoteViews nestedView, int index) { 4117 addAction(new ViewGroupActionAdd(viewId, nestedView, index));
|