我有简单的FrameLayout,其中支持CardView作为第一项,而TextView作为第二项,因此TextView必须位于展开 View 的顶部。这适用于之前的Lolipop,但在21+卡上占据了布局中的最高位置,为什么如此,以及如何解决此问题?与RelativeLayout相同。
布局:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:layout_margin="20dp"
        app:cardBackgroundColor="#ff0000"
        app:cardUseCompatPadding="false"
        />

    <TextView
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:text="i am top view!"
        android:gravity="center"
        android:layout_gravity="center"
        android:textSize="30sp"
        android:textAllCaps="true"
        android:textColor="#00ff00"
        android:background="#0000ff"
        />

</FrameLayout>

最佳答案

只需将文本 View 添加到卡片 View 中即可,据我所知,z顺序在框架布局中未定义,但最后布局的 View 应最后绘制。

这可能与棒棒糖使用时的卡 View 使用高度有关,而它们又落回到了边框绘制代码之前的棒棒糖上。

关于android - CardView在FrameLayout之上,但首先声明,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31629409/

10-12 06:13