我需要从SD卡更改iconpageindicator
的图像。因此,我需要使用String
图像路径而不是资源ID。
通常情况下,我做了类似的事情:
public class CustomPagerAdapter extends FragmentPagerAdapter implements IconPagerAdapter
IconPagerAdapter
:
public interface IconPagerAdapter {
/**
* Get icon representing the page at {@code index} in the adapter.
*/
int getIconResId(int index);
// From PagerAdapter
int getCount();
}
如您所见,唯一支持的类型是int
或资源ID,但我需要使用String
。
有人完成了这个吗?请帮助我。
非常感谢。
答案 0 :(得分:0)
只需将类型从int更改为String,并将IconPageIndicator中的Image Image资源更改为String path