Android导航设置深色模式退出导航组件

设置深色模式退出导航问题
导航组件目前不支持深色模式,可以规避切换深色模式退出导航问题,规避方式如下:
1、在styles.xml中添加主题:不允许深色模式切换

<resources xmlns:tools="http://schemas.android.com/tools">
    <style name="MyTheme">
        <!-- ...... -->
        <item name="android:forceDarkAllowed" tools:targetApi="q">false</item>
    </style>
</resources>

2、AmapRouteActivity添加主题MyTheme,并在configChanges配置中添加属性uiMode。

<activity
   android:name="com.amap.api.navi.AmapRouteActivity"
   android:launchMode="singleInstance"
   android:theme="@style/MyTheme"
   android:configChanges="orientation|keyboardHidden|screenSize|navigation|uiMode" />

如以上内容仍未解决您的问题,请创建工单
返回顶部 示例中心 常见问题 智能客服 公众号
二维码