2

PercentRelativeLayout用作 Grid 项目布局的父级。它在 Android M 之前运行良好,但在 Android M 上它是重叠的。

可能是什么原因?

这是项目布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.percent.PercentRelativeLayout
    android:id="@+id/rootView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="15dp"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <TextView
        android:id="@+id/headline"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_above="@+id/divider_lay"
        android:layout_marginBottom="5dp"
        android:gravity="center|bottom"
        android:textSize="@dimen/large_text_size"
        app:layout_heightPercent="50%"
        />

    <include
        android:id="@+id/divider_lay"
        layout="@layout/ci_item_divider_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true" />


    <TextView
        android:id="@+id/body"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_below="@+id/divider_lay"
        android:layout_marginTop="5dp"
        android:gravity="center|top"
        android:textSize="@dimen/medium_text_size"
        app:layout_heightPercent="50%"
         />
</android.support.percent.PercentRelativeLayout> 

以及它在前 M 设备上的外观:

在此处输入图像描述

在 Android M 上:

在此处输入图像描述

4

0 回答 0