From 2f69a792d865a9bd08200e40c9a07631a4b4c983 Mon Sep 17 00:00:00 2001 From: Narinder Rana Date: Thu, 17 Sep 2020 13:59:03 +0530 Subject: [PATCH] update Theme_DeviceDefault to Theme_DeviceDefault_Light --- .../e/notes/android/activity/NotesListViewActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/foundation/e/notes/android/activity/NotesListViewActivity.java b/app/src/main/java/foundation/e/notes/android/activity/NotesListViewActivity.java index 98b479b66..7cde36a05 100644 --- a/app/src/main/java/foundation/e/notes/android/activity/NotesListViewActivity.java +++ b/app/src/main/java/foundation/e/notes/android/activity/NotesListViewActivity.java @@ -955,7 +955,7 @@ public class NotesListViewActivity extends AppCompatActivity implements ItemAdap TypedValue typedValue = new TypedValue(); ContextThemeWrapper contextThemeWrapper = new ContextThemeWrapper(this, - android.R.style.Theme_DeviceDefault); + android.R.style.Theme_DeviceDefault_Light); contextThemeWrapper.getTheme().resolveAttribute(android.R.attr.colorAccent, typedValue, true); int color_accent = typedValue.data; -- GitLab