Back to project page thesearchbattle.
The source code is released under:
Apache License
If you think the Android project thesearchbattle listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.raycoarana.thesearchbattle.search; /*from w w w . j a v a 2 s. c o m*/ import android.database.Cursor; import com.raycoarana.thesearchbattle.database.Database; import com.raycoarana.thesearchbattle.io.ResultsRegister; import com.raycoarana.thesearchbattle.model.Car; import java.util.ArrayList; import java.util.List; public class MemorySearch extends BaseSearchEngine { private final Database mDatabase; private List<Car> mCars; public MemorySearch(Database database) { mDatabase = database; } @Override protected List<Car> onSearch(String term) { ArrayList<Car> results = new ArrayList<Car>(); for(Car car : mCars) { if(this.contained(term.toLowerCase(), car.getCountry(), car.getBrand(), car.getName(), String.valueOf(car.getYear()))) { results.add(car); } } return results; } private boolean contained(String term, String... texts) { for(String text : texts) { if(text != null && text.contains(term)) { return true; } } return false; } @Override public void prepareSet(String currentSource, ResultsRegister resultsRegister) { setResultsRegister(resultsRegister); resultsRegister.start(currentSource, MemorySearch.class.getSimpleName()); Cursor cursor = mDatabase.executeQuery("SELECT * FROM " + currentSource); mCars = Car.fromCursor(cursor); } }