Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e864e970 authored by Lucas Dupin's avatar Lucas Dupin Committed by Android (Google) Code Review
Browse files

Merge "Enable custom clock feature"

parents a6149521 5db44f0e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -696,8 +696,7 @@
        <provider
            android:name="com.android.keyguard.clock.ClockOptionsProvider"
            android:authorities="com.android.keyguard.clock"
            android:enabled="false"
            android:exported="false"
            android:exported="true"
            android:grantUriPermissions="true">
        </provider>

+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ import javax.inject.Named;
public class KeyguardClockSwitch extends RelativeLayout {

    private static final String TAG = "KeyguardClockSwitch";
    private static final boolean CUSTOM_CLOCKS_ENABLED = false;
    private static final boolean CUSTOM_CLOCKS_ENABLED = true;

    /**
     * Animation fraction when text is transitioned to/from bold.
+2 −3
Original line number Diff line number Diff line
@@ -149,8 +149,6 @@ public final class ClockManager {
        LayoutInflater layoutInflater = injectionInflater.injectable(LayoutInflater.from(context));

        addBuiltinClock(() -> new DefaultClockController(res, layoutInflater, colorExtractor));
        addBuiltinClock(() -> new BubbleClockController(res, layoutInflater, colorExtractor));
        addBuiltinClock(() -> new AnalogClockController(res, layoutInflater, colorExtractor));

        // Store the size of the display for generation of clock preview.
        DisplayMetrics dm = res.getDisplayMetrics();
@@ -211,7 +209,8 @@ public final class ClockManager {
        return mContentObserver;
    }

    private void addBuiltinClock(Supplier<ClockPlugin> pluginSupplier) {
    @VisibleForTesting
    void addBuiltinClock(Supplier<ClockPlugin> pluginSupplier) {
        ClockPlugin plugin = pluginSupplier.get();
        mPreviewClocks.addClockPlugin(plugin);
        mBuiltinClocks.add(pluginSupplier);
+2 −0
Original line number Diff line number Diff line
@@ -93,6 +93,8 @@ public final class ClockManagerTest extends SysuiTestCase {
                mMockPluginManager, mMockColorExtractor, mMockContentResolver,
                mMockCurrentUserObserable, mMockSettingsWrapper, mFakeDockManager);

        mClockManager.addBuiltinClock(() -> new BubbleClockController(
                getContext().getResources(), inflater, mMockColorExtractor));
        mClockManager.addOnClockChangedListener(mMockListener1);
        mClockManager.addOnClockChangedListener(mMockListener2);
        reset(mMockListener1, mMockListener2);