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

私は同じ問題を抱えていて、グーグルに報告しました

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

また、これはスタックに関する私の質問です

于 2016-11-15T07:18:35.243 に答える