ImageView over ImageView

时间:2018-04-19 18:41:14

标签: android

解决方案: 通过在recyclerview适配器中添加drawable,drawable现在位于前台。我认为这是由recyclerview或毕加索引起的。

里面有一个带有ImageView的CardView。 我想要第一个第二个图像视图,它是一个图标。

但在电话上却看不见。

我尝试了setZ,Elevation,Framelayout,.bringToFront

没有任何作用。

在imageview中使用背景显示,但我想使用scrCompat。

enter image description here

<?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"
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<android.support.v7.widget.CardView
    android:id="@+id/cardViewWallpapers"
    android:layout_width="115dp"
    android:layout_height="200dp"
    android:layout_alignParentStart="true"
    android:layout_alignParentTop="true"
    app:cardBackgroundColor="@color/colorPrimary"
    app:cardElevation="4dp"
    app:cardUseCompatPadding="true">

    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ImageView
            android:id="@+id/imageViewWallpapers"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentStart="true"
            android:adjustViewBounds="true"
            android:scaleType="centerCrop" />

        <ImageView
            android:id="@+id/imageViewViews"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:layout_alignParentBottom="true"
            android:layout_alignParentStart="true"
            android:backgroundTint="@android:color/white"
            app:srcCompat="@drawable/views" />

        <TextView
            android:id="@+id/textView_views"
            android:layout_width="85dp"
            android:layout_height="20dp"
            android:layout_alignParentBottom="true"
            android:layout_alignParentEnd="true"
            android:gravity="center_vertical"
            android:paddingStart="5dp"
            android:text="544"
            android:textAppearance="@style/TextAppearance.AppCompat.Body1"
            android:textColor="@android:color/white"
            android:textSize="10sp" />

    </FrameLayout>

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

2 个答案:

答案 0 :(得分:1)

通过在recyclerview适配器中添加drawable解决了这个问题,imageview现在位于前台。

答案 1 :(得分:0)

app:srcCompat添加到android:id="@+id/imageViewWallpapers"的ImageView 如果您想使图像适合cardView,请将ImageView设为android:layout_width="match_parent" android:layout_height="match_parent"

示例:

<ImageView
        android:id="@+id/imageViewWallpapers"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentStart="true"
        android:adjustViewBounds="true"
        android:scaleType="centerCrop"
        app:srcCompat="@drawable/views" />