Android不会尊重card_view属性

时间:2015-11-30 10:02:33

标签: android android-recyclerview

我在名为item_school.xml的xml文件中有以下内容,我正在对其进行充气以填充我的recyclerview。回收器视图尊重android:layout *属性,并在更改这些属性时更改卡之间的布局间距,但是当我添加任何card_view属性时,视图不会更改。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="3dp"
    android:layout_marginLeft="5dp"
    android:layout_marginRight="5dp"
    android:layout_marginTop="3dp"

    card_view:cardCornerRadius="50dp"
    card_view:cardElevation="50dp">

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="24dp"
        android:paddingRight="24dp"
        android:paddingTop="@dimen/activity_vertical_margin">

        <TextView
            android:id="@+id/item_school_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:fontFamily="sans-serif-medium"
            android:textAlignment="center"
            android:textColor="?android:attr/textColorPrimary"
            android:textSize="18sp" />

        <TextView
            android:id="@+id/item_school_address"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="@dimen/activity_vertical_margin"
            android:textColor="?android:attr/textColorTertiary"
            android:textSize="12sp" />

    </LinearLayout>

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

我将半径和高度提升到50dp,甚至尝试将背景更改为黑色,但视图看起来仍然相同(默认背景,角落和阴影)。似乎默认值覆盖了我在xml中的值。我需要做什么?

编辑:目标SDK:23,Min SDK:15

2 个答案:

答案 0 :(得分:0)

<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
            android:id="@+id/relativelayout1"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

 <android.support.v7.widget.CardView
        android:id="@+id/cardview1"
        xmlns:card_view="http://schemas.android.com/apk/res-auto"
        android:layout_margin="10dp"
        card_view:cardBackgroundColor="@color/colorfont_white"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">



            <TextView
                android:id="@+id/info_text"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/profile"
                android:layout_marginTop="25dp"
                android:layout_marginLeft="13dp"
                android:textColor="#ffffff"
                android:textSize="20dp"
                android:layout_marginStart="13dp"
                android:layout_alignParentTop="true"
                android:layout_alignParentLeft="@+id/info_text"
                android:layout_alignParentStart="true" />

            <TextView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:text="@string/content"
                android:id="@+id/tvpmpcontent"
                android:textColor="#ffffff"
                android:layout_marginTop="60dp"
                android:layout_marginLeft="13dp"
                android:layout_marginRight="13dp"
                android:layout_below="@+id/info_text"
                android:layout_alignLeft="@+id/info_text"
                android:layout_alignStart="@+id/info_text" />


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

答案 1 :(得分:0)

我认为您在使用cardview时使用了错误的命名空间。 尝试使用:

xmlns:card_view="http://schemas.android.com/apk/res-auto"

而不是

xmlns:card_view="http://schemas.android.com/tools"