app:theme 现在已弃用。请改用 android:theme

aro*_*ire 6 logging android themes warnings android-studio

我正在记录此警告:

I/AppCompatViewInflater? app:theme is now deprecated. Please move to using android:theme instead.

奇怪的是,我使用了 的Find in all project工具,Android Studio但没有发现app:theme.

我认为这可能是因为我正在使用it.neokree.materialnavigationdrawer并且它可以在app:theme里面,但无论如何,有没有办法禁用此警告?任何人都知道是否可能是出于其他原因?

fri*_*mle 7

你可能有一个包含这样的元素的样式:

<item name="theme">@style/TextInputTheme</item>
Run Code Online (Sandbox Code Playgroud)

用。。。来代替:

<item name="android:theme">@style/TextInputTheme</item>
Run Code Online (Sandbox Code Playgroud)