sunfusheng/StickyHeaderListView

求助 在Fragment中使用出现空指针

cnmao opened this issue · 3 comments

cnmao commented

在Activity中我使用正常
但是在 V4 的 Fragment中 出现空指针
出现在 HeaderBannerView 类 的
AbsListView.LayoutParams layoutParams = (AbsListView.LayoutParams) rlBanner.getLayoutParams();
layoutParams.height = bannerHeight; // 显示的是这个地方的 layoutParams 为 null
rlBanner.setLayoutParams(layoutParams);

rlBanner 是不是没有添加进布局里面呢
如果为空可以new AbsListView.LayoutParams

cnmao commented

谢谢 整理好了 。