0

我正在尝试使用 PercentRelativeLayout 构建一个 ListView,但它什么也没画。

我将 Genymotion 的定制手机与 andoird 4.4.4(API 级别 19)一起使用。

当我切换到 LinearLayout 的 RelativeLayout 时,项目就会出现。在 PercentRelativeLayout 中,它什么也不显示。

我究竟做错了什么?

您的帮助将不胜感激。

附件是一个丑陋的列表视图项目方案。图像项尚未包含在内。

<?xml version="1.0" encoding="utf-8"?>
<android.support.percent.PercentRelativeLayout
    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">

   <TextView
       android:id="@+id/projects_lv_item_title"
       android:layout_width="match_parent"
       app:layout_heightPercent="50%"
       />

   <TextView
       android:id="@+id/projects_lv_item_desc"
       android:layout_width="match_parent"
       app:layout_heightPercent="50%"
       />



</android.support.percent.PercentRelativeLayout>

在此处输入图像描述

4

2 回答 2

0

给 一个明确的高度PercentRelativeLayout,并添加android:layout_height="wrap_content"到两个TextViews。

于 2016-08-13T19:37:46.163 回答
0

我有同样的问题并报告给谷歌

https://code.google.com/p/android/issues/detail?id=202479

这也是在堆栈上的问题

于 2016-11-15T07:18:35.243 回答