Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

子item位置会出现问题 #1

Open
hangliVIP opened this issue Jan 7, 2019 · 0 comments
Open

子item位置会出现问题 #1

hangliVIP opened this issue Jan 7, 2019 · 0 comments

Comments

@hangliVIP
Copy link

/**
* 子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); // 设置边框下部分圆滑
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant