Define the list in a linear layout as shown below. Wrap the linear layout tags around it.
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:drawSelectorOnTop="false"
android:scrollbarAlwaysDrawVerticalTrack="true"
/>
Dynamically update this list when adding images. This will solve your problems.
source
share