As last section I have this:
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent">
<ListView
android:id="@+id/kegmine_issue_list_comments"
android:layout_width="match_parent"
android:layout_height="wrap_content">
When the listview is loaded only first item is visible.
Ok, that was due to the ListView, which is in the example also.
I have removed <ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
and it worked ok.
As last section I have this: <LinearLayout android:layout_height="wrap_content" android:layout_width="match_parent"> <ListView android:id="@+id/kegmine_issue_list_comments" android:layout_width="match_parent" android:layout_height="wrap_content"> When the listview is loaded only first item is visible.