我刚刚开始了一个新项目,我已经尝试了几天使用新的Material Design AppCompat(v21),但每次我尝试放置像CardView这样的小部件或者新的工具栏我最终得到的错误是屏幕不会让它们画出来。
例如,此代码:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_margin="5dp"
card_view:cardCornerRadius="5dp"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="100dp">
</RelativeLayout>
</android.support.v7.widget.CardView>
返回此错误:
The following classes could not be instantiated:
- android.support.v7.widget.CardView (Open Class, Show Exception)
另外,使用此代码:
<android.support.v7.widget.Toolbar
android:id="@+id/my_awesome_toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary" />
返回此错误:
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 'toolbarStyle' in current theme (6 similar errors not shown)
我已经将AppCompat添加到Gradle构建中,并且我使用Theme.AppCompat.Light以及从ActionBarActivity扩展。
我做错了吗?先谢谢你。
答案 0 :(得分:1)
我认为这只是布局编辑的错误。
尝试运行该应用以查看是否存在实际错误。