Lines Matching refs:container

91      * @param container The containing View which is displaying this adapter's
94 public void startUpdate(ViewGroup container) {
95 startUpdate((View) container);
100 * for adding the view to the container given here, although it only
104 * @param container The containing View in which the page will be shown.
107 * need to be a View, but can be some other container of the page.
109 public Object instantiateItem(ViewGroup container, int position) {
110 return instantiateItem((View) container, position);
115 * for removing the view from its container, although it only must ensure
118 * @param container The containing View from which the page will be removed.
123 public void destroyItem(ViewGroup container, int position, Object object) {
124 destroyItem((View) container, position, object);
131 * @param container The containing View from which the page will be removed.
136 public void setPrimaryItem(ViewGroup container, int position, Object object) {
137 setPrimaryItem((View) container, position, object);
143 * removed from the container as appropriate.
144 * @param container The containing View which is displaying this adapter's
147 public void finishUpdate(ViewGroup container) {
148 finishUpdate((View) container);
153 * @param container The containing View which is displaying this adapter's
158 public void startUpdate(View container) {
163 * for adding the view to the container given here, although it only
167 * @param container The containing View in which the page will be shown.
170 * need to be a View, but can be some other container of the page.
174 public Object instantiateItem(View container, int position) {
181 * for removing the view from its container, although it only must ensure
184 * @param container The containing View from which the page will be removed.
191 public void destroyItem(View container, int position, Object object) {
199 * @param container The containing View from which the page will be removed.
206 public void setPrimaryItem(View container, int position, Object object) {
212 * removed from the container as appropriate.
213 * @param container The containing View which is displaying this adapter's
218 public void finishUpdate(View container) {