我正在尝试在布局中插入卡片视图,但它正在提供此渲染错误。
Missing styles.
Is the correct theme chosen for this layout?
Use the Theme combo box above the layout to choose a different layout,
or fix the theme style references.
Failed to find style with id 0x7fff001a in current theme.
我已经在应用程序的gradle中包含了这个:
另外,我在样式中使用的主题是
styles.xml在这里:
<style name="AppTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/primaryColor</item>
<item name="colorPrimaryDark">@color/primaryColorDark</item>
<item name="colorAccent">@color/accentColor</item>
<item name="cardStyle">@style/CardView.Light</item>
</style>
cardview在这里:
<android.support.v7.widget.CardView
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:cardCornerRadius="4dp"
app:elevation="5dp"/>
错误消息讨论id为0x7fff001a的样式。它指的是什么?