Merge "Correct the resolution illustration at the setting page" into udc-dev

This commit is contained in:
Ken Lin
2023-03-28 09:06:03 +00:00
committed by Android (Google) Code Review
3 changed files with 2 additions and 2 deletions

View File

@@ -251,10 +251,10 @@ public class ScreenResolutionFragment extends RadioButtonPickerFragment {
if (TextUtils.equals(
mScreenResolutionOptions[ScreenResolutionController.HIGHRESOLUTION_IDX], key)) {
preference.setLottieAnimationResId(R.drawable.screen_resolution_1080p);
preference.setLottieAnimationResId(R.drawable.screen_resolution_high);
} else if (TextUtils.equals(
mScreenResolutionOptions[ScreenResolutionController.FULLRESOLUTION_IDX], key)) {
preference.setLottieAnimationResId(R.drawable.screen_resolution_1440p);
preference.setLottieAnimationResId(R.drawable.screen_resolution_full);
}
}