I have one edittext field and one \"search\" button. When I click on search, I have to display a list view with data corresponding to the values entered in the edittext. I h
Try this..
dataAdapter = new MyCustomAdapter(this, R.layout.results_list_item, searchedResults); myList.addHeaderView(header); myList.setAdapter(dataAdapter); dataAdapter.notifyDataSetChanged();