cardCornerRadius显示错误

时间:2015-08-13 08:11:40

标签: android xml

我正在学习android材料设计,但在它之间却不断出错。任何人都可以帮我吗?

  

workspace / RecyclerCardView / res / layout / list_item_row.xml:2:错误:找不到包'com.Zybo.recyclercardview'中属性'cardCornerRadius'的资源标识符

<android.support.v7.widget.CardView  xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="5dp"
card_view:cardCornerRadius="5dp" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/img_id"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="7dp" />

    <TextView
        android:id="@+id/txt_id"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hellooo..." />
</LinearLayout>

</android.support.v7.widget.CardView>

7 个答案:

答案 0 :(得分:34)

implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'

以上就足够了。

答案 1 :(得分:13)

将这些依赖项添加到build.gradle。
使用关键字implementation代替compile,因为它已被弃用

implementation 'com.android.support:cardview-v7:26.1.0' 
implementation 'com.android.support:appcompat-v7:26.1.0'

然后使用

app:cardCornerRadius="5dp" 

而不是

card_view:cardCornerRadius="5dp"

答案 2 :(得分:8)

这对我有用

app:cardCornerRadius="5dp"
app:cardElevation="2dp"

答案 3 :(得分:4)

感谢所有人试图解决这个问题。 最后我得到了我的问题的答案:

  1. sdk/extras/v7/cardview
  2. 单独导入卡片视图和回收视图
  3. sdk/extras/v7/recycleview
  4. 右键单击导入的项目转到属性并选中库框。
  5. 现在进入您正在工作的主项目,通过右键单击项目添加这两个库转到属性 - &gt; android(左侧) - &gt;单击添加(库)(右下侧)和所需的图书馆。

答案 4 :(得分:3)

使用此

<android.support.v7.widget.CardView
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:cardCornerRadius="10dp"
        >

答案 5 :(得分:3)

在应用程序的依赖项下添加build.gradle

implementation 'androidx.cardview:cardview:1.0.0'
implementation 'com.google.android.material:material:1.0.0'

尝试进行重构->迁移至AndroidX。

答案 6 :(得分:1)

执行以下操作

我正在使用此功能:-

build.gradle [app] :-

implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'

布局文件:-

<android.support.v7.widget.CardView
        tools:style="@style/CardView"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="10dp"
        cardCornerRadius="7dp"
        cardElevation="4dp"/>

如上所示直接使用cardCornerRadius =“ 7dp”。