我正在尝试使用 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>