huburt-Hu / NewbieGuide

Android 快速实现新手引导层的库,通过简洁链式调用,一行代码实现引导层的显示
Apache License 2.0
3.55k stars 521 forks source link

修复showPreviewPage和RelativeGuide的初始化监听问题 #175

Open wufei-limit opened 4 years ago

wufei-limit commented 4 years ago
public void showPreviewPage() {
        showPage(--current);
}

直接更改current的值,导致showPage检测current == position为true,无法正确运行

RelativeGuide自身没有添加OnLayoutInflatedListener,为GuidePage添加的OnLayoutInflatedListener并未在RelativeGuide调用。 因此为RelativeGuide新增OnLayoutInflatedListener

Zhangxd77 commented 4 years ago

谢谢!