huburt-Hu / NewbieGuide

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

怎样给adapter的其中一个view添加引导?如何在不同页面显示多个引导页? #124

Open arronvera opened 5 years ago

arronvera commented 5 years ago

怎样给adapter的其中一个view添加引导?如何在不同页面显示多个引导页?

ArvinAndroid commented 5 years ago

怎样给adapter的其中一个view添加引导?如何在不同页面显示多个引导页?

为 Adapter 中第一个 ItemView 添加引导已经有实现了,你把源码 clone 下来,在 FirstActivity 里面有实现。

clgg commented 5 years ago

recyclerView.getLayoutManager().findViewByPosition(itemIndex);可以得到itemview,但是有个问题多个引导页时adapter不要notifydatasetchanged,notifydatasetchanged后view的内存地址发生变化,否则会出the view is not showing in the window。个人遇到的可能不对