diff options
author | SuperDroidBond <superdroidbond@yahoo.com> | 2022-09-11 15:59:12 +0530 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2023-04-20 00:08:54 +0800 |
commit | 99e560deac90333569b62aa14cc9abd26b716eb2 (patch) | |
tree | c40cd8f15941d5c3ecc6d3f07a366ded96b12ca5 | |
parent | 2aa99e87db0efc6893c6e09c77d4e06ea3989d50 (diff) |
toast: fix bg color not changing with theme change
Signed-off-by: SuperDroidBond <superdroidbond@yahoo.com>
Change-Id: I0d3a1995fa35d47e246cedef670357d31e004b50
-rw-r--r-- | core/res/res/drawable/toast_frame.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/res/res/drawable/toast_frame.xml b/core/res/res/drawable/toast_frame.xml index a8cdef6d05f1..34987394b2ec 100644 --- a/core/res/res/drawable/toast_frame.xml +++ b/core/res/res/drawable/toast_frame.xml @@ -17,7 +17,7 @@ --> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> - <solid android:color="?android:attr/colorSurface" /> + <solid android:color="?android:attr/colorBackgroundFloating" /> <corners android:radius="28dp" /> </shape> |