AN
Size: a a a
AN
AN
AI
AM
AM
AM
(
constraint_referenced_ids
захардкожено и на самом деле имеет формат "string" https://android.googlesource.com/platform/frameworks/opt/sherpa/+/studio-3.2.1/constraintlayout/src/main/res/values/attrs.xml?autodive=0%2F#29AA
constraint_referenced_ids
захардкожено и на самом деле имеет формат "string" https://android.googlesource.com/platform/frameworks/opt/sherpa/+/studio-3.2.1/constraintlayout/src/main/res/values/attrs.xml?autodive=0%2F#29QH
constraint_referenced_ids
захардкожено и на самом деле имеет формат "string" https://android.googlesource.com/platform/frameworks/opt/sherpa/+/studio-3.2.1/constraintlayout/src/main/res/values/attrs.xml?autodive=0%2F#29I
(
(
QH
(
(
private void setIds(String idList) {
if (idList != null) {
int begin = 0;
while(true) {
int end = idList.indexOf(44, begin);
if (end == -1) {
this.addID(idList.substring(begin));
return;
}
this.addID(idList.substring(begin, end));
begin = end + 1;
}
}
}
QH
(
Log.w("ConstraintHelper", "Could not find id of \"" + idString + "\"");