I want a nice looking filter for my ListView in Android.
How can I do this?
|
I want a nice looking filter for my ListView in Android. How can I do this? |
||||
|
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
First, you need to create an XML layout that has both an EditText, and a ListView.
This will lay everything out properly, with a nice EditText above the ListView. Next, create a ListActivity as you would normally, but add a
Running the app now should show your previous
Notice that you will need to save your Next step is to get the input from the
|
|||||||||||||||||||||
|
|
running the programm will cause a force close. I swaped the line:
with
could that be the problem? What is the '@+building_list' for? |
|||||||||||
|
|
i had a problem with filtering, that results have been filtered, but not restored! so before filtering (activity start) i created a list backup.. (just another list, containing the same data) on filtering, the filter and listadapter is connected to the primary list. but the filter itself used the data from the backuped list. this ensured in my case, that the list was updated immediately and even on deleting search-term-characters the list gets restored successfully in every case :) thanks for this solution anyways. |
|||
|
|
|
How about a case insensitive filter? You would think it would be easy, but the buld in filter does not seem to understand it. Which makes the build-in filter a little less usefull. There is not setFilter either, nor does the filter object have any usuable properties. So we need to subclass Listview to create a simple case-insensitive filter? Sometimes Android can be a little too complicated. |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.