Lines Matching defs:container

95      * @param container The containing View which is displaying this adapter's
98 public void startUpdate(@NonNull ViewGroup container) {
99 startUpdate((View) container);
104 * for adding the view to the container given here, although it only
108 * @param container The containing View in which the page will be shown.
111 * need to be a View, but can be some other container of the page.
114 public Object instantiateItem(@NonNull ViewGroup container, int position) {
115 return instantiateItem((View) container, position);
120 * for removing the view from its container, although it only must ensure
123 * @param container The containing View from which the page will be removed.
128 public void destroyItem(@NonNull ViewGroup container, int position, @NonNull Object object) {
129 destroyItem((View) container, position, object);
137 * @param container The containing View from which the page will be removed.
142 public void setPrimaryItem(@NonNull ViewGroup container, int position, @NonNull Object object) {
143 setPrimaryItem((View) container, position, object);
149 * removed from the container as appropriate.
150 * @param container The containing View which is displaying this adapter's
153 public void finishUpdate(@NonNull ViewGroup container) {
154 finishUpdate((View) container);
159 * @param container The containing View which is displaying this adapter's
165 public void startUpdate(@NonNull View container) {
170 * for adding the view to the container given here, although it only
174 * @param container The containing View in which the page will be shown.
177 * need to be a View, but can be some other container of the page.
183 public Object instantiateItem(@NonNull View container, int position) {
190 * for removing the view from its container, although it only must ensure
193 * @param container The containing View from which the page will be removed.
201 public void destroyItem(@NonNull View container, int position, @NonNull Object object) {
209 * @param container The containing View from which the page will be removed.
217 public void setPrimaryItem(@NonNull View container, int position, @NonNull Object object) {
223 * removed from the container as appropriate.
224 * @param container The containing View which is displaying this adapter's
230 public void finishUpdate(@NonNull View container) {