diff --git a/res/drawable/screen_resolution_1080p.xml b/res/drawable/screen_resolution_full.xml similarity index 100% rename from res/drawable/screen_resolution_1080p.xml rename to res/drawable/screen_resolution_full.xml diff --git a/res/drawable/screen_resolution_1440p.xml b/res/drawable/screen_resolution_high.xml similarity index 100% rename from res/drawable/screen_resolution_1440p.xml rename to res/drawable/screen_resolution_high.xml diff --git a/src/com/android/settings/display/ScreenResolutionFragment.java b/src/com/android/settings/display/ScreenResolutionFragment.java index b40b48f246f..de7d25fefb9 100644 --- a/src/com/android/settings/display/ScreenResolutionFragment.java +++ b/src/com/android/settings/display/ScreenResolutionFragment.java @@ -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); } }