我正在尝试使用PercentRelativeLayout构建一个ListView,但它什么都没有。
我使用的是Genymotion的自定义手机和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>
答案 0 :(得分:0)
为PercentRelativeLayout
添加明确的高度,并为android:layout_height="wrap_content"
添加TextView
。
答案 1 :(得分:0)