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>