自从我更新到com.android.support.constraint:constraint-layout:1.0.0-beta5
后,当我使用在ImageView
ConstraintLayout
内扩展的RecyclerAdapter
时,我观察到了奇怪的行为
我制作了一个演示项目,其中包含了至少重现的步骤:
这行非常简单:标题和图片:
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<View
android:id="@+id/header"
android:layout_width="0dp"
android:layout_height="10dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
/>
<ImageView
android:id="@+id/image"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="centerInside"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/header"
/>
适配器看起来像这样:
public class RecAdapter extends RecyclerView.Adapter<BooleanViewHolder> {
private List<Boolean> list;
public RecAdapter(ArrayList<Boolean> list) {
this.list = list;
}
@Override
public BooleanViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
return new BooleanViewHolder(LayoutInflater.from(parent.getContext()).inflate(R.layout.row, parent, false));
}
@Override
public void onBindViewHolder(BooleanViewHolder holder, int position) {
holder.header.setBackgroundColor(list.get(position) ? Color.parseColor("#00FF00") : Color.parseColor("#FF0000"));
holder.image.setImageDrawable(null);
if (list.get(position)) {
holder.image.setVisibility(View.VISIBLE);
holder.image.setImageDrawable(holder.image.getContext().getResources().getDrawable(R.drawable.remove_me));
} else {
holder.image.setVisibility(View.GONE);
}
}
@Override
public int getItemCount() {
return list.size();
}
static class BooleanViewHolder extends RecyclerView.ViewHolder {
private final ImageView image;
private final View header;
BooleanViewHolder(View itemView) {
super(itemView);
header = itemView.findViewById(R.id.header);
image = (ImageView) itemView.findViewById(R.id.image);
}
}
}
RecyclerView
和适配器初始化如下:
recView = (RecyclerView) findViewById(R.id.recView);
// final StaggeredGridLayoutManager layoutManager = new StaggeredGridLayoutManager(1, StaggeredGridLayoutManager.VERTICAL);
LinearLayoutManager layoutManager = new LinearLayoutManager(this);
recView.setLayoutManager(layoutManager);
ArrayList<Boolean> list = new ArrayList<>();
list.add(true);
list.add(false);
list.add(true);
list.add(false);
list.add(true);
list.add(false);
list.add(true);
list.add(false);
recView.setAdapter(new RecAdapter(list));
演示功能是:
如果true
标题为绿色并显示图像。
如果false
标题为红色且ImageView
已隐藏。
在RecyclerView上向下和向上滑动后的结果:
使用beta-5
(左)和beta-4
(右):
我测试了API 24&amp; API 19同时使用StaggeredGridLayoutManager
和LinearLayoutManager
我知道这看起来更像是Google的问题报告(AOSP issue),但我会为此目的使用该帖子,除非有人指出我犯的错误或解决方法。
答案 0 :(得分:0)
我认为这是beta5中的一个错误,wrap_content
。我提交了一个错误,并与一位致力于ConstraintLayout的Google工程师进行了交谈。他确认了这个错误,然后在几天后将其修复为master
,所以我希望它会在下一个版本(未知日期)中修复。
错误报告位于here。
从2天前开始注意Fixed in master.
。
答案 1 :(得分:0)
Google已在图书馆的主分支中解决了该问题,并将在下一个版本发布后正常运行。