Android's RelativeLayout seems broken

前端 未结 2 470
灰色年华
灰色年华 2021-02-07 15:07

I\'m working on a layout where I use a ListView with RelativeLayout line items. The lineitems themselves are not displaying correctly.

The issue is that the txtVideoDur

2条回答
  •  春和景丽
    2021-02-07 15:13

    This was answered in the comment of the accepted answer. Just to make it clear, this is the answer:

    Change

    li.inflate(R.layout.listitem_videolineitem, null);

    to

    li.inflate(R.layout.listitem_videolineitem, parent, false);

提交回复
热议问题