怎么禁用Android webview的黑夜模式
要禁用Android WebView的黑夜模式,可以通过以下步骤:
- 在AndroidManifest.xml文件中,将应用程序的主题设置为不使用黑夜模式。例如:
<application
android:theme="@style/AppTheme">
...
</application>
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
...
</style>
- 在WebView加载网页之前,将WebView的夜间模式设置为关闭。例如:
WebView webView = findViewById(R.id.webView);
webView.getSettings().setForceDark(false);
这样就可以禁用Android WebView的黑夜模式了。
原文地址: http://www.cveoy.top/t/topic/eCGz 著作权归作者所有。请勿转载和采集!