[Solved] Spell check with google dictionary [closed]

@Override public void onGetSuggestions(final SuggestionsInfo[] arg0) { isSpellCorrect = false; final StringBuilder sb = new StringBuilder(); for (int i = 0; i < arg0.length; ++i) { // Returned suggestions are contained in SuggestionsInfo final int len = arg0[i].getSuggestionsCount(); if(editText1.getText().toString().equalsIgnoreCase(arg0[i].getSuggestionAt(j)) { isSpellCorrect = true; break; } } } You can find the whole project from this … Read more

[Solved] Unable to show Toast

first of all add both items in list using following code: list.add(model(name, roomid)); Also create a model class for RoomModel like this: public class RoomModel { public String name, id, image, description; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getId() { return id; } … Read more