I'm trying to make a Custom ListView. I have my XLM
<ListView
android:id="@+id/listViewCliente"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="horizontal"
tools:listitem="@layout/row_cliente"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
Notice that there I put a tools: and pointed to another XML to get the custom style.
In the design tab it shows the correct listview already custom. But when I install it on my phone or emulator it shows the default list.
Has anyone ever gone through this? I've tried uninstalling and installing again, but nothing.