I am using a ListView populated from MySQL database, the number of listview items are determined by the rows returned from the database (changes when records are updated).
- I do not want to use Fragments
- Each ListView item has clickable buttons (the listView item itself will not be clickable, only the buttons on them will be)
I thought it would be something as simple as defining a horizontal orientation for the listview but it's not the case:
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
>
</ListView>