aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/java/com/wireguard/android/activity/ThemeChangeAwareActivity.java
blob: 9a6e2edcef25279ff3d4cbd4f8fba4bf06b9bbf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
 * Copyright © 2017-2018 WireGuard LLC. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */

package com.wireguard.android.activity;

import android.content.SharedPreferences;
import android.content.res.Resources;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.app.AppCompatDelegate;
import android.util.Log;

import com.wireguard.android.Application;

import java.lang.reflect.Field;

public abstract class ThemeChangeAwareActivity extends AppCompatActivity implements SharedPreferences.OnSharedPreferenceChangeListener {
    private static final String TAG = "WireGuard/" + ThemeChangeAwareActivity.class.getSimpleName();

    @Nullable private static Resources lastResources;
    private static boolean lastDarkMode;
    private static synchronized void invalidateDrawableCache(final Resources resources, final boolean darkMode) {
        if (resources == lastResources && darkMode == lastDarkMode)
            return;

        try {
            Field f;
            Object o = resources;
            try {
                f = o.getClass().getDeclaredField("mResourcesImpl");
                f.setAccessible(true);
                o = f.get(o);
            } catch (final Exception ignored) { }
            f = o.getClass().getDeclaredField("mDrawableCache");
            f.setAccessible(true);
            o = f.get(o);
            try {
                o.getClass().getMethod("onConfigurationChange", int.class).invoke(o, -1);
            } catch (final Exception ignored) {
                o.getClass().getMethod("clear").invoke(o);
            }
        } catch (final Exception e) {
            Log.e(TAG, "Failed to flush drawable cache", e);
        }

        lastResources = resources;
        lastDarkMode = darkMode;
    }


    @Override
    protected void onCreate(@Nullable final Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Application.getSharedPreferences().registerOnSharedPreferenceChangeListener(this);
    }

    @Override
    protected void onDestroy() {
        Application.getSharedPreferences().unregisterOnSharedPreferenceChangeListener(this);
        super.onDestroy();
    }

    @Override
    public void onSharedPreferenceChanged(final SharedPreferences sharedPreferences, final String key) {
        if ("dark_theme".equals(key)) {
            final boolean darkMode = sharedPreferences.getBoolean(key, false);
            AppCompatDelegate.setDefaultNightMode(
                    sharedPreferences.getBoolean(key, false) ?
                            AppCompatDelegate.MODE_NIGHT_YES :
                            AppCompatDelegate.MODE_NIGHT_NO);
            invalidateDrawableCache(getResources(), darkMode);
            recreate();
        }
    }
}