I have a Xamarin app where I use DisplayAlert() and I have noticed that it, more often than not, will display alerts in light mode, even when I am in dark mode. While debugging, I checked the values of App.Current.UserAppTheme, App.Current.RequestedTheme, AppInfo.RequestedTheme and they were all set to dark, yet my alert still displays in light mode. I don't have access to an IOS device so I'm not sure if this is only happening on Android, but that is what I'm testing with. Has anyone come across this problem and know how to fix it? Thanks in advance.
Xamarin: Default Display Alert background colour doesn't always follow app theme
71 Views Asked by codybchaplin At
1
There are 1 best solutions below
Related Questions in XAMARIN
- C# Visual Studio Android App Showing a wrong not working Keypad on Entry text
- Playing local recorded video
- What changed from xcode 13.2.1 to 14.2 that would affect an app's entitlements?
- After adding the packages of "Xamarin.Firebase.Messaging", getting error related to JAVA0000 "Compilation failed"
- C# Xamarin Android | Change Contentview from class
- Why does my LINQ query in Xamarin.Forms show less than expected content?
- My .net MAUI app works in debug mode, but "dotnet publish" doesn't work
- Xamarain support for IOS 17.4.1
- Grid Items keep stacking instead of creating a new row
- .NET MAUI TapGesture Command not working in CollectionView
- Xamarin android emulate usb PC Keyboard
- Java.Lang.IllegalStateException: 'Unable to parse composition' using Lottie in splashscreen xamarin forms (android)
- add Items (FILES) from Directory to Spinner List
- AVPlayerViewController's caption options do not update in .Net 8 tvOS app
- Printing PDF generate with Itext7 on a thermal printer Model:P80D
Related Questions in XAMARIN.FORMS
- Playing local recorded video
- NavbarAnimation.Maui With TabbedPage
- Why does my LINQ query in Xamarin.Forms show less than expected content?
- Not showing Created folder in My App directory MAUI
- IOS Release version showing error "PlatformNotSupported" because of PCLCrypto.SymmetricKeyAlgorithmProvider.GetAlgorithm()
- The type was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built
- Heart shaped image clip - rotate/scale a Geometry object
- Printing with Xam.Plugin.Bluetooth
- Unable to open another app from within Xamarin Forms Android app
- XamlC error XFC0000 : Cannot resolve type "Popup" in my xct:popup xaml file
- .NET MAUI TapGesture Command not working in CollectionView
- Xamarin android Could not receive the push notification on OnMessageReceived while swipe away app
- how to avoid silence while playing audio file in xmarin forms media player
- Net Maui Property FlexLayout.Shrink does not work as expected
- Xamarin android emulate usb PC Keyboard
Related Questions in DARKMODE
- Storing settings in cookies
- How to display google maps in dark mode in a .NET MAUI (Android) app
- Dark mode button only works on mobile screen
- NextJS app router - where to put overall state?
- Text disappears in dark mode when tinting borderedprominent button
- OL Office 365 Dark for Windows Background Behind Text
- How to change TextField border and text colour when using Material UI Dark mode
- HTML Email - control how colors change when user is in dark mode
- How can I set the ThemeSwitcher (Next-Themes) in NextJS 14 (Typescript) to system settings, but also change the mode onClick
- Dark Mode preferredColorScheme not updating buttons
- Change Color Scheme of SwiftUI View not working when it is inside UIHostingController
- JetpackCompose Button Text color issue in both dark and light modes
- "colour_themes.conf" file isn't entirely working as intended in the editor space
- Dark/Light mode button to toggle colours in javascript
- How can I Switch Laravel Breeze from Dark Mode to Light Mode without reinstalling laravel Breeze?
Related Questions in DISPLAYALERT
- Xamarin: Default Display Alert background colour doesn't always follow app theme
- Net 7 - How to get async function (which is called inside sync function) block the code execution until its done
- How can you DisplayAlert from a .NET Maui ContentView?
- MAUI: NullReferenceException when DisplayAlert in Android Emulator
- xamarin ListView den id alma olayı
- Change the text color of Xamarin Forms Prompt Entry
- Xamarin Forms: DisplayAlert background tap firing the cancel event
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
So I used a combination of these two resources: one and two
In
MainActivity.cs, I added the override below which forces the android theme to update with a style I added as suggested in the accepted answer of two. Note: I usedAppInfo.RequestedThemeinstead ofApplication.Current.RequestedThemeas it was usually incorrect in my case.