如何创建卡片视图?

时间:2016-03-28 07:21:35

标签: android android-studio android-cardview

我在一个简单的活动中添加了一张卡片视图,因为我写了它的代码,Android工作室开始显示错误"渲染问题" 我怎么能过来呢?在这里,我附上了我的代码..

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="com.example.sj.digitalapplications1.MainActivity"
    tools:showIn="@layout/activity_main">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Digital Application Android Team"
        android:textSize="32sp"
        android:gravity="center"
        android:id="@+id/textView" />

    <android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/cv"
        >
    </android.support.v7.widget.CardView>

</RelativeLayout>

3 个答案:

答案 0 :(得分:0)

在build.gradle中添加依赖项。

dependencies {       
    compile 'com.android.support:cardview-v7:23.1.1'    
}

或右键单击Project-&gt;转到模块设置 - >打开依赖关系选项卡 - >点击右上角的加号 - >选择库依赖关系 - >选择卡片视图库

答案 1 :(得分:0)

<android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto"
        android:id="@+id/smartbro_perc"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"/>

您错过了这些内容,请添加以下代码。

  1. 在你的xml中

    xmlns:card_view="http://schemas.android.com/apk/res-auto Add it
    
  2. 在build.gradle(模块应用)

    implementation 'com.android.support:cardview-v7:26.1.0' // this version or above version ++ 
    

答案 2 :(得分:0)

compile&#39; com.android.support:cardview-v7:21.0.0&#39;

将此作为build.gradle文件中的依赖项使用。这可能适用于Android Studio 1.5.1。

P.S:我假设您使用的是SDK版本&gt; = 21