I want to create a ListView and a few other text boxes for filtering the list.
Is there a way to make it happen using one activity (i.e at the same page)?
One more question:
May I modify a ListView directly without creating a ListActivity? and how do I make the ListView in my ListActivity visible? (how do I link it with the xml?).
You certainly can create a layout which contains both a
ListViewand other controls! Make yourActivityhave a layout which contains both yourListViewand your other controls.In your
Activity, you’ll still need to hook up your data adapter to theListViewand so forth.