/**
* Initialize the dots control, do not initialize this method if you select custom hint bar
*
* @param isBackgroundColor Whether to display the background color
* @param isVisibleDots Whether to display small dots, the default display
* @param isVisibleTitle Whether to display title, the default is not displayed
*/
public BannerLayout initTips(@BoolRes boolean isBackgroundColor,
@BoolRes boolean isVisibleDots,
@BoolRes boolean isVisibleTitle) {
this.isTipsBackground = isBackgroundColor;
this.isVisibleDots = isVisibleDots;
this.isVisibleTitle = isVisibleTitle;
clearBannerTipLayout();
bannerTipLayout = new BannerTipsLayout(getContext());
return this;
}
BannerLayout.java 文件源码
java
阅读 45
收藏 0
点赞 0
评论 0
项目:BannerLayout
作者:
评论列表
文章目录