Lines Matching refs:container

92      * @param container The containing View which is displaying this adapter's
95 public void startUpdate(ViewGroup container) {
96 startUpdate((View) container);
101 * for adding the view to the container given here, although it only
105 * @param container The containing View in which the page will be shown.
108 * need to be a View, but can be some other container of the page.
110 public Object instantiateItem(ViewGroup container, int position) {
111 return instantiateItem((View) container, position);
116 * for removing the view from its container, although it only must ensure
119 * @param container The containing View from which the page will be removed.
124 public void destroyItem(ViewGroup container, int position, Object object) {
125 destroyItem((View) container, position, object);
132 * @param container The containing View from which the page will be removed.
137 public void setPrimaryItem(ViewGroup container, int position, Object object) {
138 setPrimaryItem((View) container, position, object);
144 * removed from the container as appropriate.
145 * @param container The containing View which is displaying this adapter's
148 public void finishUpdate(ViewGroup container) {
149 finishUpdate((View) container);
154 * @param container The containing View which is displaying this adapter's
160 public void startUpdate(View container) {
165 * for adding the view to the container given here, although it only
169 * @param container The containing View in which the page will be shown.
172 * need to be a View, but can be some other container of the page.
177 public Object instantiateItem(View container, int position) {
184 * for removing the view from its container, although it only must ensure
187 * @param container The containing View from which the page will be removed.
195 public void destroyItem(View container, int position, Object object) {
203 * @param container The containing View from which the page will be removed.
211 public void setPrimaryItem(View container, int position, Object object) {
217 * removed from the container as appropriate.
218 * @param container The containing View which is displaying this adapter's
224 public void finishUpdate(View container) {