Enable use_resource_processor for all sysui deps

This will make the build faster

Test: m checkbuild
Bug: 295208392
Change-Id: If75acb6b1c3f204e3686c20cef609f7cfabe15cf
This commit is contained in:
Peter Kalauskas
2023-08-23 17:41:28 -07:00
parent 08710ee575
commit 80e914a263
49 changed files with 101 additions and 96 deletions

View File

@@ -110,7 +110,7 @@ public class EntityHeaderController {
mHeader = header;
} else {
mHeader = LayoutInflater.from(fragment.getContext())
.inflate(com.android.settingslib.widget.R.layout.settings_entity_header,
.inflate(com.android.settingslib.widget.preference.layout.R.layout.settings_entity_header,
null /* root */);
}
}
@@ -236,9 +236,9 @@ public class EntityHeaderController {
}
setText(R.id.entity_header_title, mLabel);
setText(R.id.entity_header_summary, mSummary);
setText(com.android.settingslib.widget.R.id.entity_header_second_summary, mSecondSummary);
setText(com.android.settingslib.widget.preference.layout.R.id.entity_header_second_summary, mSecondSummary);
if (mIsInstantApp) {
setText(com.android.settingslib.widget.R.id.install_type,
setText(com.android.settingslib.widget.preference.layout.R.id.install_type,
mHeader.getResources().getString(R.string.install_type_instant));
}
@@ -254,7 +254,7 @@ public class EntityHeaderController {
*/
public EntityHeaderController bindHeaderButtons() {
final View entityHeaderContent = mHeader.findViewById(
com.android.settingslib.widget.R.id.entity_header_content);
com.android.settingslib.widget.preference.layout.R.id.entity_header_content);
final ImageButton button1 = mHeader.findViewById(android.R.id.button1);
final ImageButton button2 = mHeader.findViewById(android.R.id.button2);
bindAppInfoLink(entityHeaderContent);