I have a listView that expands upwards instead of downwards. I have another listView on another page that works just fine and populates itself from the top -> bot. Why does my listView start from the bottom instead of the top?
My XML `
<ListView
android:id="@+id/list_view_showRegister"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/showRegister"
android:layout_alignParentLeft="true"
android:layout_marginTop="50dp"
android:clickable="false" >
</ListView>`