Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 14792 |
manas |
1 |
package com.viewpagerindicator;
|
|
|
2 |
|
|
|
3 |
public interface IconPagerAdapter {
|
|
|
4 |
/**
|
|
|
5 |
* Get icon representing the page at {@code index} in the adapter.
|
|
|
6 |
*/
|
|
|
7 |
int getIconResId(int index);
|
|
|
8 |
|
|
|
9 |
// From PagerAdapter
|
|
|
10 |
int getCount();
|
|
|
11 |
}
|