View Single Post
Old 05-09-2020, 06:50 PM   #110
jhowell
Grand Sorcerer
jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.
 
jhowell's Avatar
 
Posts: 7,111
Karma: 92190133
Join Date: Nov 2011
Location: Charlottesville, VA
Device: Kindles
Quote:
Originally Posted by PRS-T2 View Post
Oh nooo so the screenshots out there are fake then? A Reddit hoax? They did look to good to be true indeed...
It is not a hoax. I have looked at the Kindle firmware there there is definitely an option there to add a Dark Mode icon between Bluetooth and Sync, just like those screenshots show. The software uses the DeviceCapabilityManager to check that "nightmode" is enabled before showing that option. I don't know why that is enabled for some and not others.

Spoiler:
Code:
    public static boolean isNightModeSupported() {
        return DeviceCapabilityManager.aLE().pf("nightmode");
    }

...

    this.jMR = ColorInversionUtils.isNightModeSupported();

...

    ArrayList<QuickActionsWidgetController> arrayList = new ArrayList<QuickActionsWidgetController>();
    arrayList.add(airplaneWidgetController);
    if (this.isAudibleAvailable()) {
        arrayList.add(new BluetoothWidgetController());
    }
    if (this.jMR) {
        arrayList.add(new ColorInversionWidgetController());     
    }
    arrayList.add(syncNcheckWidgetController);     
    arrayList.add(settingsWidgetController);

Last edited by jhowell; 05-09-2020 at 06:59 PM.
jhowell is offline   Reply With Quote