我在活动上使用的是Theme.AppCompat.Light.NoActionBar,它可以正常工作,但我不得不迁移到Androidx才能使用库,并且在迁移后现在有了actionBar。
我尝试使用Google搜索,但无法获得任何修复
这是我的代码
Style.xml
<style name="NoActionBar" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
Manifest.xml
<activity android:name=".LoginActivity" android:theme="@style/NoActionBar"
android:configChanges="orientation" android:screenOrientation="portrait"/>
答案 0 :(得分:1)
始终迁移到AndroidX后,最好执行以下操作:文件菜单> 使缓存无效/重新启动
答案 1 :(得分:0)
我修复了它。我刚刚清理并重建了项目