我正在学习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>
答案 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)
感谢所有人试图解决这个问题。 最后我得到了我的问题的答案:
sdk/extras/v7/cardview
sdk/extras/v7/recycleview
答案 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”。