Commit 79816147 by 郑鹏

修复首页评分可以点击的问题

parent 78cc565d
......@@ -222,8 +222,9 @@ public class MenuItemFragment extends BaseFragment {
public void onNext(BottomAroundEntity bottomAroundEntity) {
dataBeans.clear();
if (bottomAroundEntity.getData() == null || bottomAroundEntity.getData().size() == 0) {
if (bottomItemAdapter != null && rlRoundList != null)
if (bottomItemAdapter != null && rlRoundList != null) {
bottomItemAdapter.setEmptyView(UIUtile.getView(R.layout.adapter_layout_empty_data, rlRoundList));
}
} else {
dataBeans.addAll(bottomAroundEntity.getData());
}
......
......@@ -42,6 +42,7 @@
app:mDefaultImageId="@mipmap/ic_home_stars_ash"
app:mImageHeight="@dimen/dp_13"
app:mImageWidth="@dimen/dp_13"
app:mIsClick="false"
app:mMargin="@dimen/dp_3" />
<TextView
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment