我正在使用Android Studio 1.2.2并尝试在我的布局中使用CardView,但是预览会给我一个警告,即无法找到类android.support.v7.widget.CardView。这个问题已被多次提出,我已经看过这些解决方案:
Error when adding CardView to layout
android.support.v7.widget.CardView could not be found (Android Studio 1.1 Preview)
但他们都没有答案。我已将此添加到我的gradle中:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:cardview-v7:21.0.+'
}
我将其添加到布局中:
xmlns:card_view="http://schemas.android.com/apk/res-auto"
这几乎总结了所提出的两个类似问题的答案,但我仍然得到同样的错误,当我在设备上运行它时,CardView根本没有显示出来。任何人都可以指出任何其他可能的解决方案吗?
顺便说一句,minSdkVersion是21。
布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="integraloftan.cardview.main">
<android.support.v7.widget.CardView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:elevation="100dp"
card_view:cardCornerRadius="8dp">
</android.support.v7.widget.CardView>
和gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "integraloftan.match"
minSdkVersion 21
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:cardview-v7:22.2.0'
}
答案 0 :(得分:0)
首先,对不起,如果我不清楚:将for
设置为22.0.1
其次,您的buildToolsVersion
没有任何子女,其CardView
设置为height
,这可能就是您没有看到任何内容的原因。尝试将高度设置为固定值,例如wrap_content
,然后查看它是否显示。