自升级到最新的appcompat库以来,我在ViewUtils的日志中看到了一条消息。
app:theme is now deprecated. Please move to using android:theme instead.
我使用parent="Theme.AppCompat.Light.NoActionBar"
作为我的主题父母。
答案 0 :(得分:68)
将=:=
替换为app:theme
但您可能会遇到不使用android:theme
的情况。检查您的布局,尤其是工具栏布局。就我而言,我的布局文件中没有app:theme
。然后看看我的情况:
app:theme
我已将此布局更改为:
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:styled="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar_actionbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
styled:popupTheme="@style/ToolbarDarkPopup"
styled:theme="@style/ActionBarThemeOverlay" />
现在我没有看到警告。
看看这里: https://chris.banes.me/2015/04/22/support-libraries-v22-1-0/
Chris Banes的精彩解释
答案 1 :(得分:18)
我有另一个案例,当我在styles.xml中设置Toolbar
样式时发生这种情况。它看起来像这样:
<style name="AppActionBar" parent="Widget.AppCompat.ActionBar">
<item name="android:background">@color/ng_blue</item>
<item name="theme">@style/ThemeOverlay.AppActionBar</item>
<item name="popupTheme">@style/ThemeOverlay.AppCompat.Light</item>
</style>
将name="theme"
更改为name="android:theme"
,它解决了问题。
答案 2 :(得分:15)
答案 3 :(得分:1)
如果在样式文件中看到如下代码块;
<item name="theme">@style/MyToolbarTheme</item>
替换它。
<item name="android:theme">@style/MyToolbarTheme</item>