Home | History | Annotate | Download | only in timer

Lines Matching refs:position

52      * Return the Fragment associated with a specified position.
54 public abstract Fragment getItem(int position);
61 public Object instantiateItem(ViewGroup container, int position) {
66 final Fragment existing = mFragments.get(position);
75 Fragment fragment = getItem(position);
79 mFragments.put(position, fragment);
86 public void destroyItem(ViewGroup container, int position, Object object) {
92 mFragments.delete(position);
98 public void setPrimaryItem(ViewGroup container, int position, Object object) {
150 public Fragment getFragmentAt(int position) {
151 return mFragments.valueAt(position);