We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! Could we add an ability to set navigation bar color for phones that support it?
The text was updated successfully, but these errors were encountered:
You can try to overwrite dialog's style (just declare them in your styles.xml with names same as in original)
Example from my case:
<style name="ImageViewerDialog.Default" parent="android:Theme.Translucent.NoTitleBar"> <item name="android:statusBarColor">#000</item> <item name="android:windowAnimationStyle">@style/ImageViewerDialog.Animation</item> </style> <style name="ImageViewerDialog.NoStatusBar" parent="android:Theme.Translucent.NoTitleBar"> <item name="android:statusBarColor">#000</item> <item name="android:windowAnimationStyle">@style/ImageViewerDialog.Animation</item> </style> <style name="ImageViewerDialog.Animation"> <item name="android:windowEnterAnimation">@android:anim/fade_in</item> </style>
In the lib style is applied here:
Sorry, something went wrong.
No branches or pull requests
Hi! Could we add an ability to set navigation bar color for phones that support it?
The text was updated successfully, but these errors were encountered: