BaseActivity: support android 5 and 6 when clearing drawable cache

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld 2018-06-04 18:35:18 +02:00
parent 48f796c463
commit 0c0c1acc3b

View File

@ -120,18 +120,26 @@ public abstract class BaseActivity extends AppCompatActivity implements Topic.Su
} }
@Override @Override
public void onTopicPublished(Topic topic) { public void onTopicPublished(final Topic topic) {
if (topic == Application.getComponent().getThemeChangeTopic()) { if (topic == Application.getComponent().getThemeChangeTopic()) {
try { try {
Field f = getResources().getClass().getDeclaredField("mResourcesImpl"); Field f;
f.setAccessible(true); Object o = getResources();
Object o = f.get(getResources()); try {
f = o.getClass().getDeclaredField("mResourcesImpl");
f.setAccessible(true);
o = f.get(o);
} catch (final Exception ignored) { }
f = o.getClass().getDeclaredField("mDrawableCache"); f = o.getClass().getDeclaredField("mDrawableCache");
f.setAccessible(true); f.setAccessible(true);
o = f.get(o); o = f.get(o);
o.getClass().getMethod("onConfigurationChange", int.class).invoke(o, -1); try {
} catch (Exception e) { o.getClass().getMethod("onConfigurationChange", int.class).invoke(o, -1);
Log.e(TAG, "Failed to flush icon cache", e); } catch (final Exception ignored) {
o.getClass().getMethod("clear").invoke(o);
}
} catch (final Exception e) {
Log.e(TAG, "Failed to flush drawable cache", e);
} }
recreate(); recreate();
} }