尝试设置工具栏时不断收到错误:
此活动已有窗口装饰提供的操作栏。 不要请求Window.FEATURE_ACTION_BAR并将windowActionBar设置为 在您的主题中使用工具栏时为false。
我已经按照各种指南和堆叠帖子进行了操作,但没有人帮我这里是我的清单条目
<application
android:icon="@drawable/app_icon"
android:label="@string/app_name"
android:name="Controller"
android:theme="@style/Theme.MyTheme.Light.NoActionBar"
android:hardwareAccelerated="true">
活动
<activity
android:name="com.test.My_Activity"
android:theme="@style/Theme.MyTheme.Light.NoActionBar"
android:configChanges="orientation|keyboardHidden|screenSize" />
和主题
<style name="Theme.MyTheme.Light.NoActionBar" parent="@style/Theme.AppCompat.Light.NoActionBar">
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
<item name="windowActionBar">false</item>
</style>