CardView在Pre-lollipop中看起来有什么不同?

时间:2015-12-28 17:13:56

标签: android android-layout android-cardview

我利用卡片在Recycler View中显示一些信息。它显示了数据,但问题是与Lollipop相比,Kitkat显示的视图不同。

查看我在下面发布的Kitkat设备中的背景颜色。卡片和背景看起来颜色相同,所以看起来很糟糕。但是,看看Lollipop设备,我们可以看到卡片和背景的差异,这与我们在Kitkat设备中看到的不同。

顺便说一句,我知道只有5.0以上的高程。但是,diff android版本的背景颜色看起来不一样了吗?

在Kitkat:

enter image description here

棒棒糖:

enter image description here

代码:

SELECT * 
FROM `data` 
WHERE 
   (`Required ACT` BETWEEN ($act1) AND ($act2))
OR 
   (`Required SAT` BETWEEN ($sat1) AND ($sat2))

编辑:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/tools">
<android.support.v7.widget.CardView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="8dp"
    card_view:cardElevation="2dp"
    card_view:cardCornerRadius="5dp"
    card_view:cardPreventCornerOverlap="false"
    card_view:cardUseCompatPadding="true"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    xmlns:android="http://schemas.android.com/apk/res/android">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:paddingTop="15dp"
            android:paddingLeft="15dp"
            android:paddingRight="15dp"
            android:id="@+id/relative" >


            <ImageView
                android:layout_width="match_parent"
                android:layout_height="200dp"
                android:id="@+id/imageView"
                android:src="#85656565"
                android:layout_marginTop="10dp"
                android:layout_alignParentLeft="true"
                android:layout_alignParentStart="true"
                android:layout_below="@+id/content" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textAppearance="?android:attr/textAppearanceSmall"
                android:text="This is just a random text that will be changed dynamically. It&apos;s static now but will be update dynamically later"
                android:id="@+id/content"
                android:layout_alignParentLeft="true"
                android:layout_alignParentStart="true" />

            <com.github.curioustechizen.ago.RelativeTimeTextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textAppearance="?android:attr/textAppearanceSmall"
                android:text="3 hours ago"
                android:textSize="13sp"
                android:textColor="#ffff1f15"
                android:id="@+id/postedDate"
                android:layout_below="@+id/imageView"
                android:layout_alignParentLeft="true"
                android:layout_alignParentStart="true"
                android:layout_marginTop="16dp"
                android:paddingBottom="15dp"/>


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

在Kitkat:

enter image description here

棒棒糖:

enter image description here

0 个答案:

没有答案