我正在使用appcompat v7进行tabview的材料设计,就像播放商店tabview一样。
我正在使用tabbg drawable for Tabs背景图片。
我的应用运行正常。但问题发生在棒棒糖上。在棒棒糖设备中,它崩溃并出现以下错误:
java.lang.RuntimeException: Unable to start activity ComponentInfo
Caused by: android.content.res.Resources$NotFoundException: File res/drawable-xxhdpi-v4/tabbg.p
BTW我的tabbg图像位于res/drawable-xxhdpi/
但是在棒棒糖中它正在drawable-xxhdpi-v4中找到图像。
我该如何解决这个问题?这是我的自定义风格的元素设计。请让我知道我该如何解决?
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- app branding color for the app bar -->
<item name="colorPrimary">@drawable/tabbg</item>
<!-- darker variant for the status bar and contextual app bars -->
<item name="colorPrimaryDark">#222222</item>
<!-- theme UI controls like checkboxes and text fields -->
<item name="colorAccent">#FFFF00</item>
<item name="logo">@drawable/ic_launcher</item>
<item name="displayOptions">useLogo|showHome</item>
</style>