我想在android服装中更改DotsPageIndicator的默认大小和颜色,我试图通过setDotColor
和setDotColorSelected
改变颜色但是改变颜色,是否有另一种方法来改变颜色和大小? ,有第三方图书馆吗?
我的代码:
final GridViewPager pager = (GridViewPager) findViewById(R.id.pager);
pager.setAdapter(new LoggedinAdapter(this));
DotsPageIndicator dotsPageIndicator = (DotsPageIndicator) findViewById(R.id.page_indicator);
dotsPageIndicator.setDotColor(R.color.red);
dotsPageIndicator.setDotColorSelected(R.color.black);
dotsPageIndicator.setPager(pager);
答案 0 :(得分:1)
关于以下颜色的颜色:
mDotsPageIndicator.setDotRadius((int) (mDotsPageIndicator.getDotRadius()));
感谢这篇文章:
更新油漆设置点的半径。它会在更新绘画后重绘视图。