Member 12690464 Ответов: 0

Как вызвать SQL-поисковый запрос в textwatcher?


у меня есть проблема при использовании textwatcher для фильтрации элементов в моем пользовательском представлении списка. Может ли кто-нибудь помочь мне, как вызвать sql-запрос в этом textwatcher? Sql-запрос и мой пользовательский код списка показаны ниже:

public void searchValues(String mobile){
    try{
    open();

    String searchQuery = " select * from tbl_product where fld_mobile like  '%"+mobile+"%'";
    db.rawQuery(searchQuery, null);
    db.close();
    Log.v("Search_Query", searchQuery);
    }
    catch(Exception exp)
    {
        exp.printStackTrace();
}

}



public class GridViewActivity extends Activity
       {
      DBHelper dbhelper = null;
     ProductAdapter adapter;
      ListView gridView;
      @Override
    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.gridview);
   dbhelper=new DBHelper(this);

   gridView=(ListView) findViewById(R.id.listView1);
   //Add header of search bar
  LayoutInflater inflater = getLayoutInflater();
  ViewGroup header = (ViewGroup) inflater.inflate(R.layout.textview, gridView, false);
  gridView.addHeaderView(header, null, false);

  final ArrayList<Product> list=new ArrayList<Product>();

   try{
       ArrayList<Product> productlist= dbhelper.getEmployee();
       Log.v("Query Check", "Working");
       for(Product product : productlist){
       product.getMobile();
       Log.v("Get Name:", product.getMobile());
       product.getPrice();
       Log.v("Get No:", String.valueOf(product.getPrice()));
       list.add(product);
       adapter=new ProductAdapter(this, list);
       gridView.setAdapter(adapter);

   }
   }
       catch(Exception ex)
       {
           ex.printStackTrace();
       }

   EditText myFilter = (EditText) findViewById(R.id.editText1);
  myFilter.addTextChangedListener(new TextWatcher() {

  public void afterTextChanged(Editable s) {
  }

 public void beforeTextChanged(CharSequence s, int start, int count, int after) {
 }

 public void onTextChanged(CharSequence s, int start, int before, int count) {
 adapter.getFilter().filter(s.toString());
  }

  });


Что я уже пробовал:

я просто попробовал textWatcher, но понятия не имею, как обращаться с textwatcher с sql-запросом

0 Ответов