When I create a simple layout with only a ListView in it, there is no separator displayed after the last item, which looks a bit ugly.
The answer is very simple: you should change android:layout_height="wrap_content" to android:layout_height="match_parent" in your ListView.
android:layout_height="wrap_content"
android:layout_height="match_parent"
ListView
You can probably guess why this happens.