I've added search to my code and now am I wondering about one thing.
I'm using Parse.com's method:
query.whereContains("my_strings_from_Parse", text_from_EditText.toLowerCase())
I've made the text from EditText to lower-case bur right now do i need to make the strings from Parse.com lower-case.
Do you have any idea how to do it?
Intent intent = getIntent();
String query = intent.getStringExtra("query");
ParseQuery<Animal> squery = ParseQuery.getQuery(Animal.class);
squery.whereContains("animal", query.toLowerCase()); //I need to make content of //"animal"