expandable-recyclerview icon indicating copy to clipboard operation
expandable-recyclerview copied to clipboard

子item位置会出现问题

Open hangliVIP opened this issue 6 years ago • 0 comments
trafficstars

/** * 子item布局的UI设置 * * @param holder * @param groupIndex * @param childIndex / @SuppressLint({"SetTextI18n", "ResourceType"}) @Override protected void onBindChildViewHolder(ChildHolder holder, int groupIndex, int childIndex) { RowsBeanX childBean = groupList.get(groupIndex); holder.errornumber.setText(childBean.errQuestionInfoList.get(childIndex).errCount + "道"); holder.questionname.setText(childBean.errQuestionInfoList.get(childIndex).normalContent); /* * 最原始的版本 */ if (childIndex == 0) { holder.stringview.setVisibility(View.VISIBLE); } else { holder.stringview.setVisibility(View.GONE); } // 当前的位置 if (childIndex == childBean.errQuestionInfoList.size()-1) { Log.i("子item位置", ":子item位置" + childIndex);
holder.childbackground.setBackgroundResource(R.drawable.openhome_childlast_shape); // 设置边框下部分圆滑 } }

hangliVIP avatar Jan 07 '19 08:01 hangliVIP