@kusi if you did not installContentView (R.layout.yourlayout); then you should declare it, and then in this layout file you need to declare this ListView
<ListView android:id="@android:id/list" android:layout_width="match_parent" android:layout_height="match_parent" android:divider="#00000000" android:dividerHeight="20dip" />
note that you need to set the id of this list as android: id = "@android: id / list" if you increase ListActivity in your activity class.
source share