OneGreenHand

Results 15 comments of OneGreenHand

问题:Activity被回收后Fragment重建callback队列被重建清空,不能回调 请问这个问题解决了吗,谢谢

你可以在未刮奖的时候,禁止NestedScrollview 滚动,当他刮完后允许NestedScrollview 滚动

RectF减去状态栏高度即可 ` Rect globalRect = new Rect(); viewBinding.adoption.getGlobalVisibleRect(globalRect); int statusBarHeight = BarUtils.getStatusBarHeight();//获取状态栏高度 NewbieGuide .with(mContext) .setLabel("Guide1") .alwaysShow(true) .addGuidePage(GuidePage.newInstance() .addHighLightWithOptions(new RectF(globalRect.left, globalRect.top - statusBarHeight, globalRect.right, globalRect.bottom - statusBarHeight), options)) .show();`