mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-06 17:13:23 +02:00
Attempt to workaround ConstraintLayout issue
Refs androidx/constraintlayout#430
This commit is contained in:
@@ -1589,8 +1589,10 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
ConstraintLayout cl = (ConstraintLayout) flow.getParent();
|
||||
for (int id : flow.getReferencedIds()) {
|
||||
View v = cl.findViewById(id);
|
||||
flow.removeView(v);
|
||||
cl.removeView(v);
|
||||
// flow.removeView(v);
|
||||
// cl.removeView(v);
|
||||
// https://github.com/androidx/constraintlayout/issues/430
|
||||
v.setVisibility(View.GONE);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user