You can use tools:listitem
. Just add the tools namespace in the root of the layout
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
(...)
and then in your ListView set your list item layout
<ListView
android:id="@+id/mylistView"
tools:listitem="@layout/my_list_item"
(...)
Is also possible to set header/footer with listheader
/listfooter
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…