Skip to content

Commit

Permalink
修正了图片显示顺序与原帖不符的bug。这个bug是在上次提交的‘把图片显示在like内容之上’的功能中产生的
Browse files Browse the repository at this point in the history
  • Loading branch information
e729 committed Jun 12, 2024
1 parent 97193cc commit d596384
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public void inflateContentViewGroup(ViewGroup viewGroup, TextView contentView, f
gridParams.height = width / 2;
gridLayout.addView(imgList.get(1), gridParams);
}
viewGroup.addView(gridLayout, index);
viewGroup.addView(gridLayout, index++);
}

gridLayout = new GridLayout(mListener);
Expand Down

0 comments on commit d596384

Please sign in to comment.