-1

I want to show suggestions not only as starting character but also a containing character... means 's' suggestions should be like tags,pas,also, and so on.

dvhh
  • 4,593
  • 25
  • 32
  • 1
    implement your own Filter associated with the `Adapter` or use `SimpleCursorAdapter` and implement `FilterQueryProvider` – pskink Aug 28 '15 at 07:59

1 Answers1

1

@sagar jagdale : You can use Android AutoCompleteTextView.

It provides suggestions automatically when the user is typing. The list of suggestions is displayed in a drop down menu from which the user can choose an item to replace the content of the edit box with.

Check Demo Android AutoCompleteTextView Example

IntelliJ Amiya
  • 70,230
  • 14
  • 154
  • 181