Fixed
Status Update
Comments
ni...@google.com <ni...@google.com> #2
Information redacted by Android Beta Feedback.
vi...@gmail.com <vi...@gmail.com> #3
Thank you for reporting this issue. We have shared this with our product and engineering team and will update this issue with more information as it becomes available.
Description
If defining referenced id from XML
<android.support.constraint.Group
android:id="@+id/root"
app:constraint_referenced_ids="swipe,list" />
Group group = layout.findViewById(R.id.root);
group.getReferencedIds() - returning empty array;
But if setting it from code it's work fine, group.setReferencedIds(new int[]{R.id.swipe, R.id.list});
group.getReferencedIds() - not empty