답변

8

CardViewRecycleView을 사용하고하면 AppCompat 라이브러리에서 기본적으로하지 않습니다. 프로젝트에 CardView 및 RecycleView 라이브러리 설명서를 포함시켜야합니다.

참조 :https://developer.android.com/training/material/lists-cards.html#Dependencies

Gradle을 (사용 안드로이드 스튜디오) :

dependencies { 
    compile 'com.android.support:appcompat-v7:21.0.+' 
    compile 'com.android.support:cardview-v7:21.0.+' 
    compile 'com.android.support:recyclerview-v7:21.0.+' 
} 
+0

수동으로 추가하는 방법을 모르겠습니다. 자세한 내용을 알려주십시오. @Rolf –

+0

Eclipse 또는 Android Studio를 사용합니까? –

1

레이아웃 팔레트에는 "Custom"이라는 섹션이 있으며 "CustomView"를 클릭하면 그라디언 파일에 추가 된 종속성에서 가져온 모든 뷰를 볼 수 있습니다. enter image description here