Searched refs:nestedView (Results 1 – 1 of 1) sorted by relevance
| /frameworks/base/core/java/android/widget/ |
| D | RemoteViews.java | 2699 View nestedView = rvToApply.apply(context, target, rootParent, null /* size */, params); in apply() local 2701 setStableId(nestedView, mStableId); in apply() 2703 target.addView(nestedView, mIndex >= 0 ? mIndex : nextChild); in apply() 4298 public void addView(@IdRes int viewId, RemoteViews nestedView) { 4300 addAction(nestedView == null 4302 : new ViewGroupActionAdd(viewId, nestedView)); 4325 public void addStableView(@IdRes int viewId, @NonNull RemoteViews nestedView, int stableId) { 4326 addAction(new ViewGroupActionAdd(viewId, nestedView, -1 /* index */, stableId)); 4340 public void addView(@IdRes int viewId, RemoteViews nestedView, int index) { 4341 addAction(new ViewGroupActionAdd(viewId, nestedView, index));
|