I\'m trying to set a Listview under some other Widgets (Buttons, editText, etc). I don\'t want to use another activity for the listview. After reading some I found How can I
You can use your own layout with a ListActivity. Make your activity extend ListActivity, create your own layout and make sure that the ListView has android:id="@android:id/list" (this is how the ListActivity links to the ListView in your own layout), then in onCreate set your layout with setContentView.