Searched refs:nestedView (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | RemoteViews.java | 2370 View nestedView = rvToApply.apply(context, target, handler, null /* size */, in apply() local 2373 setStableId(nestedView, mStableId); in apply() 2375 target.addView(nestedView, mIndex >= 0 ? mIndex : nextChild); in apply() 3928 public void addView(@IdRes int viewId, RemoteViews nestedView) { 3930 addAction(nestedView == null 3932 : new ViewGroupActionAdd(viewId, nestedView)); 3955 public void addStableView(@IdRes int viewId, @NonNull RemoteViews nestedView, int stableId) { 3956 addAction(new ViewGroupActionAdd(viewId, nestedView, -1 /* index */, stableId)); 3970 public void addView(@IdRes int viewId, RemoteViews nestedView, int index) { 3971 addAction(new ViewGroupActionAdd(viewId, nestedView, index));
|