如何在android中更改DotsPageIndicator的布局?

时间:2016-05-03 08:36:10

标签: android wear-os

我想在android服装中更改DotsPageIndicator的默认大小和颜色,我试图通过setDotColorsetDotColorSelected改变颜色但是改变颜色,是否有另一种方法来改变颜色和大小? ,有第三方图书馆吗? 我的代码:

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);

1 个答案:

答案 0 :(得分:1)

关于以下颜色的颜色:

mDotsPageIndicator.setDotRadius((int) (mDotsPageIndicator.getDotRadius()));

感谢这篇文章:

  

更新油漆设置点的半径。它会在更新绘画后重绘视图。

original repo