I am developing an Android App in which i have 60 Items which i have bind with GridViewAdapter
which is display 9 Items Per Page and working properly.
BUT
I want to make search from that 60 Items using Name of Items and want to focus on EditText
.
I have done code but that search from 9 items only which is currently displaying.
Is there any solution that make it perfect.
Your Help always Appreciated...
You can set filter when you pull data from database and whenever text changed in edittext change the question in sql
*means your collumns. Its not good to select all using *
or if you are using contentProvider construct proper question to db
or you can implement filterable adapter to your gridView. Simply implement in GridViewAdapter Filterable interface and than you can filter anything you want. Example This example refers to listView but it can be used also with gridView.